|
Thanks for your interest, Gustavo. Here is the code from a KML file saved by Google Maps. I agree that this is user error -- I just don't know what my error is! G <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://earth.google.com/kml/2.2"> <Document> <name>Test 07</name> <description><![CDATA[Testing import of KML to Manifold]]></description> <Style id="style1"> <IconStyle> <Icon> <href>http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-dot.png</href> </Icon> </IconStyle> </Style> <Style id="style2"> <IconStyle> <Icon> <href>http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-dot.png</href> </Icon> </IconStyle> </Style> <Placemark> <name>Marker 1</name> <description><![CDATA[<div dir="ltr">Good fishing around here</div>]]></description> <styleUrl>#style1</styleUrl> <Point> <coordinates>-110.830078,45.644768,0.000000</coordinates> </Point> </Placemark> <Placemark> <name>Marker 2</name> <description><![CDATA[<div dir="ltr">Good diving here</div>]]></description> <styleUrl>#style2</styleUrl> <Point> <coordinates>-79.013672,25.562265,0.000000</coordinates> </Point> </Placemark> </Document> </kml>
|