On Sep 1, 1:13 pm, Patrick Cain <[email protected]> wrote: > Hello, all - > > I'm sure that this problem is rooted in my limited knowledge of Java, > but please bear with me. > > I'm trying to display the KML shown > here:http://www.patrickcain.ca/maps/100901_kmloriginal_test.html > > in a customized map shown > here:http://www.patrickcain.ca/maps/100901_with_kml.html > > Every attempt to slide in the var geoXml = command results in the > second map either breaking or ignoring the KML, and I'm completely out > of ideas. If somebody could take a look at the second map and try to > see what's wrong I'd appreciate it.
Doesn't the javascript error: Line: 93 Error: 'GGeoXml' is undefined give you a clue? (hint: GGeoXml is not part of v3, it is only available in v2) You are using v3 in your map. The replacement in v3 (I think) is kmlLayers: http://code.google.com/apis/maps/documentation/javascript/overlays.html#KMLLayers -- Larry -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
