This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages1
#1
ERRORES/BUGS / Re: Issue displaying KML Polygons
September 29, 2019, 06:59:52 PM #2
ERRORES/BUGS / Issue displaying KML Polygons
September 26, 2019, 05:27:30 PMHere is a picture of how the kml appears in google earth and QGIS:
And here is the same kml in Oruxmaps:
Here is the kml file:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
<Document id="root_doc">
<name>test.kml</name>
<StyleMap id="m_ylw-pushpin">
<Pair>
<key>normal</key>
<styleUrl>#s_ylw-pushpin</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#s_ylw-pushpin_hl</styleUrl>
</Pair>
</StyleMap>
<Style id="s_ylw-pushpin">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<PolyStyle>
<color>ff7fff00</color>
</PolyStyle>
</Style>
<Style id="s_ylw-pushpin_hl">
<IconStyle>
<scale>1.3</scale>
<Icon>
<href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<PolyStyle>
<color>ff7fff00</color>
</PolyStyle>
</Style>
<Folder>
<name>test</name>
<Placemark>
<styleUrl>#m_ylw-pushpin</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
-122.266848316874,46.52103347782341,0 -122.255195696854,46.52152900511809,0 -122.255056435868,46.51005241386699,0 -122.266964429884,46.50972316057629,0 -122.266848316874,46.52103347782341,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>
-122.263093735146,46.517837928142,0 -122.263077322552,46.5143628814202,0 -122.257776400494,46.51447038926339,0 -122.25780291442,46.518086195574,0 -122.263088622448,46.5180061017693,0 -122.263093735146,46.517837928142,0
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>
</Folder>
</Document>
</kml>
Pages1