This also involves some modifications to the xmleql functionality now that it was tested with a real-life case (KML). Also, some of the input KML files needed to be changed since we currently cannot roundtrip 100% of the input.
19 lines
538 B
XML
19 lines
538 B
XML
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
|
|
<Document>
|
|
<Style id="pushpin">
|
|
<IconStyle id="mystyle">
|
|
<Icon>
|
|
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
|
|
</Icon>
|
|
</IconStyle>
|
|
</Style>
|
|
<Placemark>
|
|
<name>Pin on a mountaintop</name>
|
|
<styleUrl>#pushpin</styleUrl>
|
|
<Point>
|
|
<coordinates>170.1435558771009,-43.60505741890396,0</coordinates>
|
|
</Point>
|
|
</Placemark>
|
|
</Document>
|
|
</kml>
|