0
我需要幫助獲取幾乎所有<coord>
標籤所示的所有x
,y
和flags
數字。我不需要<pattern>
標籤和具有rotation
屬性的標籤。我似乎無法找到/想出將返回這些的正確的XPath字符串。使用XPath獲取xmap座標屬性
<parts count="1" current="0">
<part name="default part">
<objects count="37">
<object type="1" symbol="166">
<coords count="26">
<coord x="-13110" y="-20755" flags="1"/>
<coord x="-13360" y="-20705"/>
<coord x="-13680" y="-20615"/>
<coord x="-13610" y="-20375" flags="18"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
<object type="0" symbol="170" rotation="0">
<coords count="1">
<coord x="-13770" y="-20815"/>
</coords>
</object>
<object type="1" symbol="157">
<coords count="13">
<coord x="-13195" y="-27090" flags="1"/>
<coord x="-13415" y="-25930"/>
<coord x="-13360" y="-25125"/>
</coords>
<pattern rotation="0">
<coord x="0" y="0"/>
</pattern>
</object>
所以我期望的輸出是某事像這樣:
-13110 -20755 1
-13360 -20705
-13680 -20615
-13610 -20375 18
-13195 -27090 1
-13415 -25930
-13360 -25125
它需要在JavaScript。這裏是full map
謝謝!我解析成javascript後,它的工作原理! – Matis