Tagged Questions
4
votes
1answer
48 views
Changing projection in KML from Google Earth to Maps
I have created a bunch of map tiles for Google Maps mistakenly using the Google Earth projection. Is there a tool available to batch warp the KML files to the correct projection or will I need to ...
1
vote
2answers
92 views
Can I download a layer displayed on the google api?
Given the google api displaying a map on some site with layer 'A' on top of it. How can I create a GIS file for layer A (as simply as possible of course)?
1
vote
2answers
277 views
How to make editable polygons in Google Maps?
I've just recently started learning Google maps, JavaScript, etc., and have a few questions about a project that I'd like to do. I'm wanting to take some ESRI shapefiles, convert them to KML, and then ...
6
votes
0answers
109 views
Google Maps and Search for KML URL
Can anyone tell me how I could add the functionality as seen on google maps that allow users to specify a URL to a KML file in the search bar?
I would like to include this in my own embedded map but ...
1
vote
3answers
486 views
How upload KML from your local disk using Google Maps API?
I am trying to get load my KML from my local disk with given below code :
<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new ...
1
vote
1answer
212 views
geoxml3 parseKMLString function not working?
I am unable to use Parser.parseKMLString().
Its giving me a error saying Parser.parseKMLString() is not a function.
What i am trying to do is, read the KML file on the server and return the entire ...
3
votes
1answer
277 views
How Do i Secure My KML files for a rails application?
I would want to keep my KML files to be secure or password protected. I am keeping them on a public server, and i dont want them to be accessible to anyone.
I am using geoxml3, so any lock applied to ...
2
votes
0answers
291 views
egeoxml vs geoxml
What is the difference between egeoxml and geoxml?
What i know is both are client-side parsers and both allow me to edit the kml files on the run.
I guess egeoxml is an initiative by google itself ...
2
votes
1answer
274 views
KML with Google Maps : Google violates same origin policy?
Doesn’t Google Violate the same origin policy when it tries to access the KML files from a globally accessible server?
The condition for Google maps to display the KML is that it should be globally ...
1
vote
1answer
808 views
Order of KML Layers in Google Maps API V3
I'm working on a website that when finished will allow the user to turn on and off a number of different KML layers using checkboxes, the layers are parsed through geoXML3 and I want to know how to ...
4
votes
1answer
1k views
Output polygon data from postGIS and read it on Google Maps API
So, I have a group of polygons stored in PostGIS. I'm trying to build a web application with Google Base maps (using Google Maps API). Now, How do i output the polygons in the right format so that ...
2
votes
0answers
244 views
directions (path find) given kml supplied bounds
Im trying to generate directions using google.maps.DirectionsService
and I really need those directions bounded by the paths defined from
within a pre-made kml file. I have reviewed the API docs for ...
2
votes
2answers
407 views
Is it possible to do scale dependent rendering in Google maps with KML?
I have some data that I would like to display in greater detail as the user zooms into the interactive Gooogle map. Does google support dynamically turning layers on and off depending on the scale?
...