2016-09-29 10 views
0

ポリゴンを塗りつぶすKMLコードがあります。多角形を塗りたくないです。私は0と1を持っていますが、塗りつぶされたポリゴンは表示されます。ポリゴンの半径は約10mです。これは非常に小さいので1.5の線幅が実際にポリゴンを塗りつぶすのですか?KML - ポリゴンは必要ありませんが、まだ行われません

<?xml version='1.0' encoding='UTF-8'?> 
<kml xmlns='http://earth.google.com/kml/2.1'> 
<Document> 
<name> 
CO0xxxxxx 
</name> 
<open>1</open> 
<Style id='a'> 
<IconStyle> 
<Icon> 
http://maps.google.com/mapfiles/kml/paddle/grn-blank.png 
</Icon> 
</IconStyle> 
</Style> 
<Folder> 
<open>0</open> 
<name>Names</name> 
<Placemark> 
<name>WELL NO 2</name> 
<description><![CDATA[]]></description> 
<Point> 
<altitudeMode>clampToGround</altitudeMode> 
<coordinates>-107.676117, 39.586253,0</coordinates> 
</Point> 
</Placemark> 
<open>0</open> 
<name>Polygons on-off</name> 
<Placemark> 
<Style> 
<IconStyle> 
<Icon> 
<href>root://icons/palette-s.png</href> 
<x>224</x> 
<y>224</y> 
<w>32</w> 
<h>32</h> 
</Icon> 
</IconStyle> 
<PolyStyle> 
<Fill>0</Fill> 
<Outline>1</Outline> 
</PolyStyle> 
<LineStyle> 
<Color>ff0000ff</Color> 
<Width>1.5</Width> 
</LineStyle> 
</Style> 
<Polygon> 
<extrude>0</extrude> 
<altitudeMode>clampToGround</altitudeMode> 
<outerBoundaryIs> 
<LinearRing> 
<coordinates> 
-107.676029,39.586323,0 
-107.675996,39.586227,0 
-107.676085,39.586158,0 
-107.676205,39.586183,0 
-107.676238,39.586279,0 
-107.676149,39.586348,0 
-107.676029,39.586323,0 
</coordinates> 
</LinearRing> 
</outerBoundaryIs> 
</Polygon> 
</Placemark> 
</Folder> 
</Document> 
</kml> 

答えて

0

KMLされる:ここで は、KML(Iは1点だけではなく、元のソースの倍数にそれを取り除い)(これが正常に動作しているので、あなたがそれをコピーして、私が何を意味するかを見ることができるはず)でありますXMLの方言。タグで大文字と小文字が区別さ

from the posted KML

<PolyStyle> 
<Fill>0</Fill> 
<Outline>1</Outline> 
</PolyStyle> 

と同じではない:

<PolyStyle> 
<fill>0</fill> 
<outline>1</outline> 
</PolyStyle> 

updated KML

KML Reference

関連する問題