An application programming interface specific to Google Maps.

learn more… | top users | synonyms

1
vote
1answer
223 views

Initializing Google Maps Streetview object looking at the position

I have a streetview included in my web site using google API to load it. var theloc = new google.maps.LatLng(lat, lon); var panoramaOptions = { addressControl: false, position: theloc, pov: { ...
1
vote
1answer
174 views

Google maps api, several moving markers using a csv file containing the coordinates

I collected 5 sets of coordinates of moving vehicles and I want to play the scene using googlemaps API showing those 5 vehicles moving. The sets are saved in a postgresql table. is it possible ? if ...
1
vote
1answer
99 views

Feature “Add to wishlist” in Info Window in Google Maps API 3?

I have Google Map and a lot of markers. Is there possibility to add feature when user clicks on marker and Info Window shows up, that user has option to add that location to wishlist and associate ...
1
vote
3answers
94 views

How to use WKT in Google Map V3?

We have a shape with the following WKT. The problem with google map we normally extract out each of the lat and long value and put into an array and finally will do something like this. It works fine ...
1
vote
2answers
91 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
1answer
185 views

How to obtain to Max zoom levels for Google layer using Open layers

I was trying to obtain maximum zoom level ( level 22) for Google street map using Openlayers.layer.google script. The following code does not seem to work.It works to the maximum zoom level when Var ...
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 ...
1
vote
1answer
672 views

Google Maps Ground Overlay: How to calculate bounds?

I'm working with the Google Maps API for the first time and I'm trying to append a simple image of a Building on top of my current map view. This seems to be very straight forward when I look at the ...
1
vote
1answer
332 views

Offset Google markers at the same address

What can I incorporate into my current code below to offset markers, as markers at the same address don't show. Here's example http://www.mediwales.com/mapping/test UPDATE: I've changed the way the ...
1
vote
1answer
105 views

Delimitate an area - google map

I tried to find tools to delimitates a specific region area of a map When the mouse is on a specific area, there is the region delimition which appears. Like this website : ...
1
vote
1answer
32 views

kml divide map into regions

in google map, how to show Douglas county MAP in regions manner. (east, west, north, south). These regions should cover with border and show the picker when click the balloon. Here is my KML ...
1
vote
0answers
51 views

polygon color changes automatically when zooming map [closed]

I have implemented a google map using V3 js API. I am drawing about 500 zip code polygons inside the map. The colouring of the zip code polygons depends upon certain conditions which is working fine. ...
1
vote
0answers
64 views

Extracting street segments from google maps?

I'm using the google maps v3 api and am trying to extract a list of intersections and street segments from an overlay created from a KML file. Ideally, I'd like to be able to get the poly lines in a ...
1
vote
1answer
166 views

Unable to put data into infowindow

I've followed this tutorial to create a custom Google Map. I've included a few other elements such as linking it up to Wordpress and clustering the markers. It's all working great apart from the info ...
1
vote
0answers
91 views

How to create a Google Maps with draggable routes with fixed markers

I have a webapp where I show a route on a map, I pass two address and show the route on map, so I'd like that this route should be draggable but the points A and B shoud be fixed. How to do this?
1
vote
2answers
273 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 ...
1
vote
0answers
60 views

How to add data from a Google map as layer in ArcMap using C#?

A want use C# to write a tool: add data google map as a layer in ArcMap. I am using Arcgis 10.0. Can you help me. Thanks and regards.
1
vote
0answers
178 views

Google Places Autocomplete Limit Suggestions to Local Area

I'm not sure if this is the right place to ask, but can I limit the suggestions that Google Places Autocomplete find to say 5 km of a certain location? If I'm in Dublin I don't want to see suggestions ...
1
vote
1answer
798 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 ...
1
vote
0answers
140 views

Detecting If A Coordinate Is Near Polygon Edges In Google Maps API

Is there a way to add a test to see if a Lat/Long coordinate is near the edge of a polygon? I am building very complicated polygons that have rivers and roads as borders. Because of this, it is very ...
1
vote
0answers
113 views

Avoid backtracking while creating loop in Google Map API 3

I am trying to build a solution where i would create loop by google map. My first and only business rule is there should not be any repeated route. But with my demo ...
0
votes
1answer
230 views

Google Map layer loads tiles even if this layer is disabled in OpenLayers

Sorry for cross posting I've asked this question in OL mailing list, but not get response yet. It is very important for me to resolve this issue. I've made a little example that reflect my problem. ...
0
votes
1answer
1k views

Google Map - display specific markers popup using a list of markers

I have the following code: <script type="text/javascript"> window.onload = function() { // Creating a new map var map = new google.maps.Map(document.getElementById("map"), { ...
0
votes
1answer
486 views

Reference materials for learning Google API V3 with PHP and MySQL (tracking)

I am new to this Google API. Now i wanted to learn Google API with PHP and MySQL. Actually i wanted to create an application that will track x,y coordinates coordinates on real time bases for ...
0
votes
1answer
323 views

Can I reset “latlng” coordinates on Google Maps?

I have made a custom map type using the Google Maps API. I have used maptiler to create the different zoomlayers and the 0 layer (really zoomed out) is a 256 x 256 tile. The image only covers 134 x ...
0
votes
1answer
299 views

How to convert Singapore Onemap Co-ordinate to Google maps co-ordinate system

I have to fetch few 3000 co-ordinates (I am Geo-coding ) and convert it into Google map co-ordinate system. Following is the process I am doing I am calling Mapone.sg API for geo-coding in return ...
0
votes
2answers
928 views

GIS Web API - WFS-T Edit

My organization has a asset management application using Google Maps Java API as the GIS viewer. The application does some simple editing/querying on a kml file through html form elements. Instead ...
0
votes
1answer
95 views

How to get nearby tiles from a location?

I want to get the tile in which a particular location lie and also its nearby tiles. Is there any google map api which could return this information.
0
votes
1answer
25 views

Using Google Map API for Business with Openlayers

Has anyone used the paid version of Google Map API (for business) with OpenLayers? I am currently using the free version and wonder what the difference is, from both the end user and developer ...
0
votes
0answers
28 views

cut tiles with gdal2tiles.py from a png with world coordinate info

I have a collection of PNG files that use the standard google maps projection and have baked into the filename of each the zoom level (all of them are at 22), the x and y pixel coordinates of the ...
0
votes
0answers
33 views

cannot submit address to Google geocoder on iPad: ArcGIS JS webmap app

I am working on a web map app for desktop and iPads. The app uses a Google geocoder to locate addresses or intersections, added with the standard code in 'init': geocoder = new ...
0
votes
0answers
35 views

Polygon colors overlap when zoom in the google map [closed]

I have posted this question in StackExchange previously with a different heading, but did not got much response. Posting this time again with some more clarification. I have implemented a google map ...
0
votes
0answers
40 views

Adding and displaying custom wms layers with google earth api in geoext

Could anyone point me to some resources on adding custom wms+wfs layers over google earth api base layer in geoext? I have gone through this link, but I could not somewhat know how to do it. I even ...
0
votes
0answers
29 views

Google map goes blank when triggering click event outside [closed]

I have created a google map using V3 js API, and inside the map I am showing multiple markers. When I am clicking on a markers it does an ajax call and shows the result in the infowindow. I have added ...
0
votes
1answer
138 views

How to draw straight lines inside google map polygon [closed]

I have created a google map using google map javascript API V3. I am drawing number of zipcode polygons. The polygons are of different colors depending upon some condition. Now I want to draw straight ...
0
votes
0answers
53 views

Render Google Fusion Tables Layer Tiles in OpenLayers

I would like to know if there is a way now to include Google Fusion Table Layers Tiles in OpenLayers, and if yes, is it possible to use the dynamic styling just like in Google Maps? I know you can ...
0
votes
0answers
56 views

How to get intersection area when two drive time polygons overlap?

I would like to get the area of overlap between two drive time maps. The maps will be like the one in this post: Create drive time polygon around a map point That means polygons from one map will ...
0
votes
0answers
69 views

How to calculate new coordinates by given distance, angle and altitude

I'm using C function to calculate new coordinates by given distance and angle to download google static maps tile by tile to create small map at given zoom. I have troubles because this code works ...
0
votes
0answers
68 views

How to add more points to Google Directions route?

I managed to add two points to Google Directions route - start and end point, but I'm interested to adding more end points like on this site: http://www.bikeroutetoaster.com/Course.aspx When user ...
0
votes
0answers
212 views

Python package for Google Maps API v3?

I am looking for a Python package that can generate the JavaScript to display Google Maps API v3. I would like to integrate such package into a django website. I know pymaps exists but it's for ...
0
votes
0answers
123 views

MarkerCluster Zoom out problem google map v3

I want the marker cluster to disappear after a certain level of zoom. Now the problem is if i write it on the zoom_changed event of the map, it conflicts with the markercluster.js. This is because, ...
0
votes
0answers
1k views

I am trying to put autocomplete of Google API V3 for places, but giving some error

I am trying to put textbox within the infowindow which is working fine in order to get direction and route. And now i want to make textbox autocomplete for google api places. I have ref this link ...
0
votes
0answers
164 views

Problem with callback function of google distance matrix api

I am getting problem with google distance matrix api. I want to use google distance matrix api to calculate distance between various origin and destination places. The google is only allowing 25 place ...
0
votes
0answers
221 views

How draw a route in Google Maps as i goes on clicking on Google map

I wanted to get route in google map as i click on ROADMAP of google. I mean by click, I can click one place then other and so on, but route to each click must be generated from previous click. Route ...
0
votes
0answers
33 views

How to get rid of copyright popup (google maps API V3)? [duplicate]

Possible Duplicate: Google Maps layer copyright popup every time map updated / user input I don't know why I am getting that annoying copyright popup while I haven't exceeded the quota! I ...
0
votes
1answer
204 views

What is the correct projection to use with tm_wgs84_sans_antarctica.shp?

I am using tm_wgs84_sans_antarctica.shp with mapnik to generate tiles. I am using the tiles with Google Maps Javascript API V3. But the projection is way off. Here is roughly what my code looks like: ...
0
votes
1answer
755 views

Using Google API 3 with Openlayers Brings POPUP [duplicate]

Possible Duplicate: Google Maps layer copyright popup every time map updated / user input I recently upgraded from google map api v2 to v3. It was working quite fine previously but now it ...

1 2