Questions tagged [geoxml3]

geoxml3 is a third party KML parser for the Google Maps API v3 that parses KML files and renders them as native Google Maps API v3 objects.

Geoxml3 is a third party KML parser for the Google Maps API v3 that parses KML files in the browser and renders them as native Google Maps API v3 objects. There is also a branch that supports KMZ files (zipped KML files).

104 questions
0
votes
1 answer

Issue with Google Maps api and GeoXML3 trying to use containsLocation

I am trying to set up a system that loads a KMZ file and displays it using google maps and then tests if the user has clicked within the bounds of a polygon created by the KMZ. I have searched all through these forums and the web and haven't found a…
user1770717
  • 309
  • 1
  • 12
0
votes
1 answer

KML overriding default view after loading

I am using geoxml3 from local machine to load kml. However the default view center is changing once kml is loaded. I did try adding line "preserveViewport: true" but still I get full view of kml after loading. any suggestion to stop this. Here is…
aprilian
  • 621
  • 3
  • 17
0
votes
1 answer

KML slowness in Google maps

I have a KML file of size 2.7MB which I am rendering over world map using Google Maps V3. It works fine but the loading time is very slow (~8 seconds). I have this KML file locally stored and I use geoxml3 API to render it. Is it possible to somehow…
EMM
  • 1,812
  • 8
  • 36
  • 58
0
votes
2 answers

Geoxml3 groundOverlay zIndex

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…
cholu1217
  • 23
  • 6
0
votes
2 answers

Geoxml3 issue (kmz library)

I want to parse a simple marker from a KML so i have been making some tests with geoxml3, everything goes perfect if I use (import) the 'polys/geoxml3.js' library, but if I change it to 'kmz/geoxml3.js' (because later I want to use some…
cholu1217
  • 23
  • 6
0
votes
1 answer

Geoxml3 CreatePolygon function

I am trying to know how to use the createPolygon function in the parser options. This is my index file but it gives me this error: Cannot read property 'bounds' of undefined.
cholu1217
  • 23
  • 6
0
votes
1 answer

use Google My Maps with geoxml3

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…
0
votes
1 answer

GWT: Basic KML rendering not working

I have added geoxml3.js to my GWT project and added to my host html file. In my java source file I have: // KML utils public final native JavaScriptObject createKmlParser(JavaScriptObject…
EMM
  • 1,812
  • 8
  • 36
  • 58
0
votes
1 answer

update center point on geoxml3

I have loaded and styled using geoxml3. Now i want to update the map changing only center point and zoom level. how can i achieve this. var latlng = new google.maps.LatLng(29.722601, -11.681680); var myOptions = { zoom : 1, …
shorif2000
  • 2,582
  • 12
  • 65
  • 137
0
votes
1 answer

geoxml3 removing set center position

I am loading a KML file using geoxml3. the center position gets applied when google maps loads but once geoxml3 applies the kml file it moves the center position. var myOptions = { zoom : 2, minZoom:2, maxZoom:10, …
shorif2000
  • 2,582
  • 12
  • 65
  • 137
0
votes
1 answer

Hide/Show some placemarks in google maps with geoxml3

I load a map with 3 layers: var myOptions = { center: new google.maps.LatLng(36.82907321372808, -4.46044921875), zoom: 4, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map_canvas"),…
Andynedine
  • 441
  • 5
  • 20
0
votes
2 answers

Load a map with geoxml using parseKmlString() and parse()

OLD POST How can I use parse and parseKmlString together?? I need show a map loading one KML file (I use parse()) and two XML string (I use parseKmlString()). How I use useTheData in afterParse property?? I don't know…
Andynedine
  • 441
  • 5
  • 20
0
votes
0 answers

Render kmz file data on google map with geoxml3

I use kmz branch of geoxml3 to simple render geo date from kmz file. But it works not well. Placemarks are rendering fine, but I cant see any overlays. This is my code: …
user3390963
  • 2,313
  • 1
  • 13
  • 12
0
votes
1 answer

Can I get an Unclickable geoxml3 Shadow Layer that sits entirely behind a Clickable Marker Layer?

In order to have markers that are clickable and marker shadows that are not, I'm setting up two geoxml3 parsers, one for the markers and one for the shadows. That works, but I'm hoping that having two layers will also let me keep the shadow of one…
0
votes
1 answer

Clicking a polygon using Google Maps API 3 - Need to change to MouseOver (Geoxmlv3 & KML Layer)

I have a Google Maps (API 3) running a custom KML (geoxml3) with polygons containing titles and descriptions. It all works fine, however I need to change the polygon click which reveals the infowindow to work on hover instead. It is easy enough to…
Friendly Code
  • 1,585
  • 1
  • 25
  • 41