新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论XLink, XPointer, XQuery
    [返回] 中文XML论坛 - 专业的XML技术讨论区XML.ORG.CN讨论区 - XML技术『 XQuery/XLink/XPointer/ 』 → 问一个弱弱的问题 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 4911 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: 问一个弱弱的问题 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     leomay 帅哥哟,离线,有人找我吗?
      
      
      等级:大二期末(数据结构考了98分!)
      文章:55
      积分:354
      门派:XML.ORG.CN
      注册:2005/2/14

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给leomay发送一个短消息 把leomay加入好友 查看leomay的个人资料 搜索leomay在『 XQuery/XLink/XPointer/ 』的所有贴子 点击这里发送电邮给leomay 引用回复这个贴子 回复这个贴子 查看leomay的博客楼主
    发贴心情 问一个弱弱的问题

    <?xml version="1.0" encoding="utf-8"?>
    <svg id="main" xml:space="preserve" width="100%" height="100%" zoomAndPan="disable" onload="Javascript:initialize(evt);Javascript:yy_datetime()" xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns="http://www.w3.org/2000/svg">
    <script xlink:href="11.js" language="JavaScript" type="text/javascript"/>
    <defs>
    <linearGradient id="aboutDeg" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="0" y2="1">
     <stop offset="0" style="stop-color:rgb(255,255,255)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="oveMapDeg" gradientUnits="objectBoundingBox" x1="1" y1="0" x2="0" y2="0">
     <stop offset="0" style="stop-color:rgb(255,255,255)"/>
     <stop offset="0.5" style="stop-color:rgb(0,33,99)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="panningArrowDeg" gradientUnits="objectBoundingBox" x1="0" y1="1" x2="0" y2="0">
     <stop offset="0.1" style="stop-color:rgb(255,255,255)"/>
     <stop offset="0.5" style="stop-color:rgb(0,33,99)"/>
     <stop offset="0.9" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="panningArrowDeg2" gradientUnits="objectBoundingBox" x1="1" y1="0" x2="0" y2="0">
     <stop offset="0" style="stop-color:rgb(255,255,255)"/>
     <stop offset="0.5" style="stop-color:rgb(0,33,99)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="lcDeg" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="0">
     <stop offset="0" style="stop-color:rgb(0,33,99)"/>
     <stop offset="0.75" style="stop-color:rgb(255,255,255)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="lcDeg2" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="0">
     <stop offset="0" style="stop-color:rgb(0,0,0)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="lcDeg3" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="1">
     <stop offset="0" style="stop-color:rgb(255,255,255)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    <linearGradient id="lcDeg4" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="1">
     <stop offset="0" style="stop-color:rgb(255,255,255)"/>
     <stop offset="1" style="stop-color:rgb(255,255,255)"/>
    </linearGradient>
    </defs>
    <rect width="100%" height="100%" style="fill:#999999"/>
    <text id="maptitle" x="272.5" y="20" style="fill:rgb(255,255,255) ;font-weight:bold;text-anchor:middle;font-family:'Simsun';font-size:25;pointer-events:none;">平度市地图</text>
    <svg id="mapid"  x="10" y="40" xml:space="preserve" width="525px" height="347px" viewBox="0 0 5250 3470" zoomAndPan="magnify" style="shape-rendering:geometricPrecision;text-rendering:geometricPrecision;image-rendering:optimizeQuality;color-interpolation:sRGB">
    <script><![CDATA[
    function switchColor (evt,property,newcolor,idpath){var target ;var svgdoc;svgdoc = evt.getTarget().getOwnerDocument();target = get_target(evt);if (idpath.substring(0,17) == 'composedLineStyle'){objpath = svgdoc.getElementById(idpath.substring(17,idpath.length));objpath.setAttribute('style','');tempobj = svgdoc.getElementById(idpath);tempobj.getStyle().setProperty(property,newcolor);}else{target = get_target(evt);target.getStyle().setProperty (property, newcolor);}}function get_target (evt){var target = evt.getTarget();while (target && !target.getAttribute('id'))target = target.getParentNode();return target;}
    ]]></script>
    <defs>
    <linearGradient id="Gradient15" gradientUnits="objectBoundingBox" x1="0" y1="1" x2="0" y2="0">
     <stop offset="0" style="stop-color:rgb(176,229,255)"/>
     <stop offset="1" style="stop-color:rgb(0,171,255)"/>
    </linearGradient>
    <style id="mapstyle" type="text/css">
    <![CDATA[
     .b2-16777215-t {fill:rgb(255,255,255);fill-rule:evenodd;stroke-linejoin:round}
     .b2-16251642-t {fill:rgb(247,250,250);fill-rule:evenodd;stroke-linejoin:round}
     .b2-13756134-t {fill:rgb(209,230,230);fill-rule:evenodd;stroke-linejoin:round}
     .b2-11588563-t {fill:rgb(176,211,211);fill-rule:evenodd;stroke-linejoin:round}
     .b2-9749443-t {fill:rgb(148,195,195);fill-rule:evenodd;stroke-linejoin:round}
     .b2-7121321-t {fill:rgb(108,169,169);fill-rule:evenodd;stroke-linejoin:round}
     .b2-5148045-t {fill:rgb(78,141,141);fill-rule:evenodd;stroke-linejoin:round}
     .b2-5411988-t {fill:rgb(82,148,148);fill-rule:evenodd;stroke-linejoin:round}
     .b2-13693183-16777215 {fill:rgb(208,240,255);fill-rule:evenodd;stroke-linejoin:round}
     .b2-16777215-16777215 {fill:rgb(255,255,255);fill-rule:evenodd;stroke-linejoin:round}
     .b2-255-16777215 {fill:rgb(0,0,255);fill-rule:evenodd;stroke-linejoin:round}
     .b2-16776960-t {fill:rgb(255,255,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-6303744-t {fill:rgb(96,48,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-8404992-t {fill:rgb(128,64,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-0-t {fill:rgb(0,0,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-9464832-t {fill:rgb(144,108,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-8413184-t {fill:rgb(128,96,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-5248000-t {fill:rgb(80,20,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-11556864-t {fill:rgb(176,88,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-10506240-t {fill:rgb(160,80,0);fill-rule:evenodd;stroke-linejoin:round}
     .b2-11556864-16777215 {fill:rgb(176,88,0);fill-rule:evenodd;stroke-linejoin:round}
     .p1220 {stroke:rgb(0,0,0);stroke-width:1.5px;}
     .p13232896 {stroke:rgb(0,128,128);stroke-width:2.25px;}
     .p1232896 {stroke:rgb(0,128,128);stroke-width:7.5px;}
     .p3211030783 {stroke:rgb(168,80,255);stroke-width:22.5px;}
     .p3232768 {stroke:rgb(0,128,0);stroke-width:22.5px;}
     .p3216744448 {stroke:rgb(255,128,0);stroke-width:22.5px;}
     .p3216711680 {stroke:rgb(255,0,0);stroke-width:22.5px;}
     .p1216251642 {stroke:rgb(247,250,250);stroke-width:7.5px;}
     .p110 {stroke:none;}
     .p1116776960 {stroke:none;}
     .p1225253120 {stroke:rgb(80,40,0);stroke-width:1.5px;}
     .p1225242880 {stroke:rgb(80,0,0);stroke-width:1.5px;}
     .p12128 {stroke:rgb(0,0,128);stroke-width:7.5px;}
     .fArial110167116801 {fill:rgb(255,0,0);font-weight:bold;font-family:'Arial'}
     .fArial1101281 {fill:rgb(0,0,128);font-weight:bold;font-family:'Arial'}
     .fArial01001 {fill:rgb(0,0,0);font-family:'Arial'}
     .fArial21001 {fill:rgb(0,0,0);font-style:italic;font-family:'Arial'}
    ]]>
    </style>
    </defs>
    <clipPath id="clippingPath_1">
     <path id="mapFrame_1" class="p120 b2-16777215-0" d="M0 0 L5250 0 5250 3470 0 3470 0 0 Z " />
    </clipPath>
    <g id="mapWindow" style="clip-path:url(#clippingPath_1)">
    <image x="0" y="0" width="5250" height="3470" xlink:href="Pd.svgz" onclick="Javascript:TagCircle(evt)"></image>
    <circle id="innercircle" cx="200" cy="200" r="40" visibility="hidden" style="fill:red"/>
    </g>
    <script><![CDATA[
    var layers ='';
    ]]></script>
    </svg>

    <g id="overviewAndZoomTools" transform="translate(581,40)">
    <g id="overview" style="display:visible">
     <text id="overviewtitle" x="65" y="0" style="fill:rgb(255,255,255);font-weight:bold;text-anchor:middle;font-family:'Verdana';font-size:9;pointer-events:none;"></text>
     <text id="overviewtitle" x="65" y="10" style="fill:rgb(255,255,255);font-weight:bold;text-anchor:middle;font-family:'Simsun';font-size:14;pointer-events:none;">缩略地图</text>
     <svg id="overviewmap" x="15" y="15" width="105" height="69" viewBox="0 0 5250 3470">
     <image x="0" y="0" width="5250" height="3470" xlink:href="Pd.svgz"></image>
     <rect id="maskingRect" style="fill:rgb(255,255,255);opacity:0.1" x="0" y="0" width="5250" height="3470" />
     <rect id="locationRect" cursor="move" style="fill:rgb(0,33,99);stroke-width:50;stroke:rgb(0,0,0);fill-opacity:0.4" x="0" y="0"
    width="5250" height="3470"  visibility="hidden" onmouseover="Javascript:showinfotip(evt,'托拽定位')"  onmousedown="Javascript:beginPan(evt);Javascript:hideinfotip(evt);" onmousemove="Javascript:doPan(evt);" onmouseup="Javascript:endPan(evt);Javascript:hideinfotip(evt);" onmouseout="Javascript:hideinfotip(evt);Javascript:endPan(evt)"/>
     <rect id="overviewborder" style="fill:none;pointer-events:none;stroke:url(#oveMapDeg);stroke-width:200" x="0" y="0" width="5250" height="3470"/>
     <rect id="ovupinnerborder" style="fill:rgb(0,0,0);" x="100" y="50" width="5050" height="50" />
     <rect id="ovleftinnerborder" style="fill:rgb(0,0,0);" x="50" y="50" width="50" height="3370" />
     <rect id="ovrighttinnerborder" style="fill:rgb(225,225,225);" x="5150" y="50" width="50" height="3370" />
     <rect id="ovboinnerborder" style="fill:rgb(225,225,225);" x="100" y="3370" width="5100" height="50" />
    </svg>
    </g>
    <g id="zoomtools" transform="translate(-35,-10)">
    <g id="gzoomValue">
     <text transform="translate(10,9)" style="fill:rgb(255,255,255);font-weight:bold;font-family:'Simsun';font-size:14;pointer-events:none">缩放</text>
    <g id="gcursor" transform="translate(0,86)">
     <path id="zoomcursor" transform="translate(36,42)" d="M5 -1.5L5 4.5 0 1.5 Z" style="fill:rgb(255,0,0);stroke-width:1;stroke:rgb(255,255,255)" />
    </g>
    <g transform="translate(0,150)">
    <text id="date"  x="20" y="80"> </text>
    <text id="time"  x="20" y="120"> </text>
    </g>
    <!--<g id="moverect" transform="translate(20,200)">
            <rect width="20" height="14" rx="5" ry="5" style="visibility:visible;fill:rgb(255,255,255);stroke-width:2; stroke:rgb(0,0,0);" onclick="Moveto(2000,2000)"></rect>
    </g>-->
    </g>
    <g id="zoomicons" transform="translate(15,14)">
    <g id="ZoomInGraphics" transform="scale(0.17)" style="stroke:#000000;"  onclick="Javascript:Zoomin(evt);" onmouseover="Javascript:showinfotip(evt,'点击缩放');Javascript:switchZoomColor(evt, 'circlezoomin','fill','rgb(255,255,255)');" onmouseout="Javascript:switchZoomColor(evt,'circlezoomin','fill','none');Javascript:hideinfotip(evt);">
    <rect id="zoominpusheffectrec" rx="7" ry="7" x="-12" y="-12" width="124" height="124" style="fill:url(#lcDeg3);stroke:rgb(0,33,99);stroke-width:5" />
    <path id="zoominpusheffectbr" d="M-12 108L108 108 108 -12" style="fill:none;stroke:rgb(0,33,99);stroke-width:8" />
    <path id="zoominpusheffectul" d="M-8 110 L-8 -8 110 -8" style="stroke:rgb(0,33,99);stroke-width:8;fill:none;visibility:hidden" />
    <circle id="circlezoomin" fill="none" stroke-width="5" cx="43" cy="43" r="37" />
    <circle fill="rgb(255,255,255);stroke:rgb(0,0,0);stroke-width:1" cx="38" cy="26" r="14" />
    <path style="fill:none;stroke-width:10;display:none" d="M19.155,39.572h43.333" />
    <path style="fill:none;stroke-width:10;display:none" d="M41.237,19.157v42.498" />
    <path style="fill:none;stroke-width:10" d="M69.152,69.57l31.002,31.002" />
    </g>
    <rect transform="scale(0.17)" id="releasezoom" rx="7" ry="7" x="-12" y="-12" width="124" height="124" style="fill:rgb(255,0,0);opacity:0;visibility:hidden;pointer-events:none" onclick="Javascript:releaseZoom(evt);"/>
    <g id="zoommore" transform="translate(0,25)" onclick="Javascript:Zoommore(evt)" onmouseover="Javascript:showinfotip(evt,' 放大 ');Javascript:switchZoomColor(evt,'zoommorerecbg','fill','rgb(255, 255, 255)')" onmouseout="Javascript:switchZoomColor(evt,'zoommorerecbg','fill','rgb(255,255,255)')" >
    <rect id="zoommorerecbg" rx="3" ry="3" width="18" height="10" style="stroke:rgb(0,33,99);stroke-width:1;fill:rgb(255,255,255)" />
    <path transform="translate(4,0)" d="M5 2L5 8" style="fill:none;stroke:rgb(0,33,99);stroke-width:1"/>
    <path transform="translate(4,0)" d="M2 5L8 5" style="fill:none;stroke:rgb(0,33,99);stroke-width:1"/>
    </g>
    <g id="zoomless" transform="translate(0,120)" onclick="Javascript:Zoomless(evt)" style="opacity:0.5;pointer-events:none" onmouseover="Javascript:showinfotip(evt,' 缩小 ');Javascript:switchZoomColor(evt,'zoomlessrecbg','fill','rgb(255, 255, 255)')" onmouseout="Javascript:switchZoomColor(evt,'zoomlessrecbg','fill','rgb(255,255,255)')" >
    <rect id="zoomlessrecbg" rx="3" ry="3" width="18" height="10" style="stroke:rgb(0,33,99);stroke-width:1;fill:rgb(255,255,255)" />
    <path transform="translate(4,0)" d="M2 5L8 5" style="fill:none;stroke:rgb(0,33,99);stroke-width:1"/>
    </g>
    </g>
    <g id="rectzoom" transform="translate(15,46)">
    <rect id="rectzoom2000" style="fill:rgb(255,255,255);stroke:none" x="0" y="6" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'2000');" onmouseover="Javascript:showinfotip(evt,'2000%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1900" style="fill:rgb(255,255,255);stroke:none" x="0" y="10" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1900');" onmouseover="Javascript:showinfotip(evt,'1900%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1800" style="fill:rgb(255,255,255);stroke:none" x="0" y="14" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1800');" onmouseover="Javascript:showinfotip(evt,'1800%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1700" style="fill:rgb(255,255,255);stroke:none" x="0" y="18" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1700');" onmouseover="Javascript:showinfotip(evt,'1700%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1600" style="fill:rgb(255,255,255);stroke:none" x="0" y="22" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1600');" onmouseover="Javascript:showinfotip(evt,'1600%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1500" style="fill:rgb(255,255,255);stroke:none" x="0" y="26" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1500');" onmouseover="Javascript:showinfotip(evt,'1500%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1400" style="fill:rgb(255,255,255);stroke:none" x="0" y="30" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1400');" onmouseover="Javascript:showinfotip(evt,'1400%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1300" style="fill:rgb(255,255,255);stroke:none" x="0" y="34" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1300');" onmouseover="Javascript:showinfotip(evt,'1300%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1200" style="fill:rgb(255,255,255);stroke:none" x="0" y="38" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1200');" onmouseover="Javascript:showinfotip(evt,'1200%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1100" style="fill:rgb(255,255,255);stroke:none" x="0" y="42" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1100');" onmouseover="Javascript:showinfotip(evt,'1100%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom1000" style="fill:rgb(255,255,255);stroke:none" x="0" y="46" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'1000');" onmouseover="Javascript:showinfotip(evt,'1000%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom900" style="fill:rgb(255,255,255);stroke:none" x="0" y="50" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'900');" onmouseover="Javascript:showinfotip(evt,'900%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom800" style="fill:rgb(255,255,255);stroke:none" x="0" y="54" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'800');" onmouseover="Javascript:showinfotip(evt,'800%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom700" style="fill:rgb(255,255,255);stroke:none" x="0" y="58" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'700');" onmouseover="Javascript:showinfotip(evt,'700%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom600" style="fill:rgb(255,255,255);stroke:none" x="0" y="62" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'600');" onmouseover="Javascript:showinfotip(evt,'600%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom500" style="fill:rgb(255,255,255);stroke:none" x="0" y="66" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'500');" onmouseover="Javascript:showinfotip(evt,'500%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom400" style="fill:rgb(255,255,255);stroke:none" x="0" y="70" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'400');" onmouseover="Javascript:showinfotip(evt,'400%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom300" style="fill:rgb(255,255,255);stroke:none" x="0" y="74" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'300');" onmouseover="Javascript:showinfotip(evt,'300%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom200" style="fill:rgb(255,255,255);stroke:none" x="0" y="78" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'200');" onmouseover="Javascript:showinfotip(evt,'200%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    <rect id="rectzoom100" style="fill:rgb(255,255,255);stroke:rgb(0,0,0)" x="0" y="82" width="18" height="3" onmousedown="Javascript:Zoomto(evt,'100');" onmouseover="Javascript:showinfotip(evt,'100%');switchColor(evt,'fill','rgb(255,0,0)', '')" onmouseout="switchColor(evt,'fill','rgb(255,255,255)', '');Javascript:hideinfotip(evt);"/>
    </g>
    </g>
    </g>
    <g id="cardinal">
    <g id="west" transform="translate(0,30)">
     <path id="westPanningArrow" d="M0 8 A8 8 0 0 1 8 0 L8 367 A8 8 0 0 1 0 359 Z" style="fill:url(#panningArrowDeg)" onclick="Javascript:goWest();"/>
     <path id="westArrow" d="M2 183.5 L6.5 178.5 6.5 188.5 Z" style="fill:rgb(255, 255, 255)" onmouseover="Javascript:showinfotip(evt,'  向西  ');switchColor(evt,'fill','rgb(255,255,255)', '');" onmouseout="Javascript:hideinfotip(evt);switchColor(evt,'fill','rgb(255, 255, 255)', '')" onclick="Javascript:goWest();"/>
     <rect id="westmapborder" x="8" y="8" width="2" height="351" style="fill:rgb(0,0,0);"/>
    </g>
    <g id="north" transform="translate(8,30)">
     <rect id="northPanningArrow" x="0" y="0" width="529" height="8" style="fill:url(#panningArrowDeg2)" onclick="Javascript:goNorth();"/>
     <path id="northArrow" d="M262.5 2 L267.5 6.5 257.5 6.5Z" style="fill:rgb(255, 255, 255);" onmouseover="Javascript:showinfotip(evt,'  向北  ');switchColor(evt,'fill','rgb(255,255,255)', '')" onmouseout="Javascript:hideinfotip(evt);switchColor(evt,'fill','rgb(255, 255, 255)', '')" onclick="Javascript:goNorth();"/>
     <rect id="northmapborder" x="0" y="8" width="527" height="2" style="fill:rgb(0,0,0);"/>
    </g>
    <g id="east" transform="translate(537,30)">
     <path id="EastPanningArrow" d="M0 0 A8 8 0 0 1 8 8 L8 359 A8 8 0 0 1 0 367 Z" style="fill:url(#panningArrowDeg)" onclick="Javascript:goEast();"/>
     <path id="EastArrow" d="M6.5 183.5 L2 178.5 2 188.5 Z" style="fill:white" onmouseover="Javascript:showinfotip(evt,'  向东  ');switchColor(evt,'fill','rgb(255,255,255)', '')" onmouseout="Javascript:hideinfotip(evt);switchColor(evt,'fill','rgb(255, 255, 255)', '')" onclick="Javascript:goEast();"/>
     <rect id="westmapborder" x="-2" y="8" width="2" height="349" style="fill:rgb(225,225,225);"/>
    </g>
    <g id="south" transform="translate(8,389)">
     <rect id="southPanningArrow" x="0" y="0" width="529" height="8" style="fill:url(#panningArrowDeg2)" onclick ="Javascript:goSouth();"/>
     <path id="southArrow" d="M262.5 7.5 L267.5 3 257.5 3Z" style="fill:white;" onmouseover="Javascript:showinfotip(evt,'  向南  ');switchColor(evt,'fill','rgb(255,255,255)', '')" onmouseout="Javascript:hideinfotip(evt);switchColor(evt,'fill','rgb(255, 255, 255)', '')" onclick ="Javascript:goSouth();"/>
     <rect id="southmapborder" x="2" y="-2" width="527" height="2" style="fill:rgb(225,225,225);"/>
    </g>
    </g>

    <g id="infotips">
     <rect id="infotipRect" x="20" y="0" width="100" height="14" rx="5" ry="5" style="visibility:hidden;fill:rgb(255,255,255);stroke-width:1; stroke:rgb(0,0,0);opacity:0.8;pointer-events:none"></rect>
     <text id="infotip" x="25" y="11"  style="fill:rgb(0,0,0);visibility:hidden;font-weight:bold; font-family:'Simsun';font-size:12;text-anchor:left;pointer-events:none" >!</text>
     <animate id="fade" attributeName="opacity" begin="parking_parc.mouseover;relais.mouseover;ravitaillement.mouseover;no_pistes.mouseover" dur="0.6s" from="0" to="1" fill="freeze" />
    </g>
    <rect id="rectevt" x="0" y="0" width="0" height="0" style="fill:rgb(0,33,99);opacity:0.5;visibility:hidden" />
    <rect id="bgrectevt" cursor="crosshair" x="10" y="40" width="525" height="347" style="fill:rgb(255,255,255);opacity:0;visibility:hidden" onmousedown="Javascript:beginResize(evt)" onmouseup="Javascript:endResize(evt)" onmousemove="Javascript:doResize(evt)" />
    </svg>


    怎么定位到<g id="mapWindow" style="clip-path:url(#clippingPath_1)">节点上???????????????????????


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/7/19 14:35:00
     
     mickeyfirst 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:86
      门派:XML.ORG.CN
      注册:2004/11/8

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给mickeyfirst发送一个短消息 把mickeyfirst加入好友 查看mickeyfirst的个人资料 搜索mickeyfirst在『 XQuery/XLink/XPointer/ 』的所有贴子 引用回复这个贴子 回复这个贴子 查看mickeyfirst的博客2
    发贴心情 
    /svg/g[@id="infotips"]
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/8/3 19:11:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 XQuery/XLink/XPointer/ 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/4/27 8:44:51

    本主题贴数2,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    109.375ms