geoxml3

Geoxml3 groundOverlay zIndex

回眸只為那壹抹淺笑 提交于 2019-12-12 01:09:10
问题 Is there a way to change the zIndex of a groundOverlay? With Geoxml3 I am parsing two KML files, one of them contains a polygon and the other one contains a groundOverlay. Everythings goes perfect except for the fact that i want my groundOverlay OVER the polygon, because now the groundOverlay appears behind the polygon. Update: This is my code <!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"/> <meta http-equiv="content-type" content="text/html;

use Google My Maps with geoxml3

社会主义新天地 提交于 2019-12-11 16:26:12
问题 I'm wondering what is the best way to use the data from Googles' My Maps with geoxml3. At the moment it is only possible to export kmz data format from My Maps. I used the exported kmz with the geoxml kmz version (http://geoxml3.googlecode.com/svn/branches/kmz/) but couldn't make it work (but it worked when I loaded it in Google Earth and saved it again as kmz!). I also tried it with the network link to My Maps (which I would like best), but no success, just got the message "XMLHttpRequest

geoxml3 kml polygon tooltip on mouseover instead of click

你。 提交于 2019-12-08 12:54:26
问题 I need an working example or a solution for hovering a kml polygon and showing the info balloon - instead of doing it on click. Is it doable? For example, on this map, instead of showing the info balloon on click, doing it on mouse over: http://www.geocodezip.com/geoxml3_test/geoxml3_test_polygon.html Obs.: my kml file has additional info inside Placemark => ExtendedData (if that helps in any way). tks :) 回答1: Here is an example that uses InfoBubble for the "tooltip" (only handles polygons):

Load kml extendeddata into variable with Geoxml3

扶醉桌前 提交于 2019-11-28 12:59:53
I understand that Geoxml3 has a built in feature to load kml extendeddata into variables (from its source code - see bellow), but I couldn't find the way to access those variables after parsing. Does anyone know how to do it? Thanks, cheers. (line 544 of geoxml3.js of kmz branch): // add extended data to variables var extDataNodes = node.getElementsByTagName('ExtendedData'); if (!!extDataNodes && extDataNodes.length > 0) { var dataNodes = extDataNodes[0].getElementsByTagName('Data'); for (var d = 0; d < dataNodes.length; d++) { var dn = dataNodes[d]; var name = dn.getAttribute('name'); if (

Load kml extendeddata into variable with Geoxml3

為{幸葍}努か 提交于 2019-11-27 07:21:25
问题 I understand that Geoxml3 has a built in feature to load kml extendeddata into variables (from its source code - see bellow), but I couldn't find the way to access those variables after parsing. Does anyone know how to do it? Thanks, cheers. (line 544 of geoxml3.js of kmz branch): // add extended data to variables var extDataNodes = node.getElementsByTagName('ExtendedData'); if (!!extDataNodes && extDataNodes.length > 0) { var dataNodes = extDataNodes[0].getElementsByTagName('Data'); for (var