Hi, I'm trying to add an overlay to my map on my website. I have this KML: http://www.ok-parking.nl/TEST/KOK/KML/Spijkerkwartier.kml Put on my map.
This KML looks like this: <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http:// www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom"> <GroundOverlay> <name>TafelKleedCirkelSpijkerKwartier</name> <Icon> <href>http://www.ok-parking.nl/TEST/KOK/IMG/kleedjecirkel.png</href> <viewBoundScale>0.75</viewBoundScale> </Icon> <LatLonBox> <north>51.99118163721575</north> <south>51.97300619870296</south> <east>5.934743818415157</east> <west>5.905233528959616</west> </LatLonBox> </GroundOverlay> </kml> And the code in my file is like this: var kml = new GGeoXml("http://www.ok-parking.nl/TEST/KOK/KML/ Spijkerkwartier.kml"); map.addOverlay(kml); What am I doing wrong?? Hope someone can help me with this. Thanks in advance. Zeb -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
