Google Maps JavaScript API Version 3 lets you embed the functionality of Google Maps into your own website. Version 3 provides greatly improved support for mobile devices.

learn more… | top users | synonyms (1)

63
votes
13answers
76k views

Google Maps API v3: How to remove all markers?

In Google Maps API v2, if I wanted to remove all the map markers, I could simply do: map.clearOverlays(); How do I do this in Google Maps API v3? Looking at the Reference API, it's unclear to me.
49
votes
5answers
55k views

Google Map API v3 — set bounds and center

I've recently switched to Google Maps API V3. I'm working of a simple example which plots markers from an array, however I do not know how to center and zoom automatically with respect to the markers. ...
29
votes
8answers
5k views

Alternatives to google maps api

google maps api is great for developing location based services for mobile phones. But for some reason the use of it is restricted for me in a special project. E.g. if your project is in conflict ...
28
votes
7answers
21k views

Calculate distance between two points in google maps V3

How do you calculate the distance between two markers in Google maps V3? (Similar to the distanceFrom function inV2.) Thanks..
27
votes
3answers
39k views

Google Maps JS API v3 - Simple Multiple Marker Example

Fairly new to the Google Maps Api. I've got an array of data that I want to cycle through and plot on a map. Seems fairly simple, but all the multi-marker tutorials I have found are quite complex. ...
24
votes
2answers
14k views

How to disable mouse scroll-wheel scaling with Google Maps API

I am using Google Maps API (v3) to draw a few maps on a page. One thing I'd like to do is disable zooming when you scroll the mouse wheel over the map, but I'm unsure how. I have disabled the ...
21
votes
10answers
29k views

Problems with Google Maps API v3 + jQuery UI Tabs

There are a number of problems, which seem to be fairly well-known, when using the Google Maps API to render a map within a jQuery UI tab. I've seen SO questions posted about similar issues (here and ...
17
votes
1answer
7k views

How to trigger the onclick event of a marker on a Google Maps V3?

How do I trigger the onclick event of a marker on a Google Maps from outside the map? I use version 3 of the API. I've seen many tutorials for version 2, but can't find this for version 3. I have a ...
14
votes
4answers
12k views

Google Maps Api v3 - getBounds is undefined

I'm switching from v2 to v3 google maps api and got a problem with gMap.getBounds() function. I need to get the bounds of my map after its initialization. Here is my javascript code: var gMap; ...
14
votes
7answers
6k views

Have just one InfoWindow open in Google Maps API v3

I need to open only one InfoWindow on my Google Map. I need to close any other InfoWindow before i open a new one. Can you some one guide me on this?
12
votes
2answers
269 views

How can some LatLng be used to place markers on a Google map, but not to draw a Polygon?

Roughly a week ago, I ran into a problem: on a custom google-powered map, my Polygons would not show up, while Markers for the same coordinates are totally ok. Despite my efforts with the Google Maps ...
12
votes
2answers
10k views

Google Maps API v3: How to remove an Event Listener?

How do I remove the 'bounds_changed' Event listener in Google Maps API v3? google.maps.event.removeListener(_???_);
11
votes
4answers
3k views

Handling click events in Google Maps JS API v3 while ignoring double clicks

With the Google Maps JS API v3, I want to drop a marker where the user clicks on the map, while keeping the default behavior when the user double clicks (and not adding any marker on the map). I ...
11
votes
3answers
5k views

Google Maps Api v3 - find nearest markers

When i click on map, which will be best way to find nearest marker or markers? is there some functions in api that will help me to do that? it's google map api v3.
11
votes
1answer
6k views

Google Maps V3: Loading infowindow content via AJAX

What is the best way to load content into my infowindow using ajax? Right now I am getting a similar effect using iframes but I am not that that happy with it. I thought this would be straight forward ...
11
votes
1answer
15k views

fitbounds() in Google maps api V3 does not fit bounds

I'm using the geocoder from Google API v3 to display a map of a country. I get the recommended viewport for the country but when I want to fit the map to this viewport, it does not work (see the ...
10
votes
3answers
3k views

Google Maps v3: Enforcing min. zoom level when using fitBounds

I'm drawing a series of markers on a map (using v3 of the maps api). In v2, I had the following code: bounds = new GLatLngBounds(); ... loop thru and put markers on map ... ...
10
votes
1answer
2k views

Highlight polygon and tint rest of map using Google Maps

I'd like to display a highlighted polygon using Google Maps. The idea is that the polygon in question would be displayed normally and the rest of the map should be darkened a little bit. Here's an ...
10
votes
2answers
18k views

Google Map API v3 ~ Simply Close an infowindow?

Trying to simply close an infowindow? I already have an array of markers, so something like this would be good. Thanks MyMarkers[i].infowindow.close();
10
votes
2answers
1k views

Does Google Maps API v3 allow larger zoom values?

If you use the satellite GMapType using this Google-provided example in v3 of the API, the maximum zoom level has a scale of 2m / 10ft , whereas using the v2 version of another Google-provided example ...
9
votes
2answers
2k views

YouTube video in a Google Map Info Window

I am trying to put a youtube video into a Google Map (v3) Info Window. It works fine in Firefox and Internet Explorer. It does not work in Safari and Chrome. In those browsers the positioning is off ...
9
votes
2answers
5k views

Whats the API Key for in Google Maps API V3?

In the older version of the API, I'd have to insert the javascript into the page using something like this for just basic functionality to work: ...
9
votes
3answers
9k views

How can I create numbered map markers in Google Maps V3?

I'm working on a map that has multiple markers on it. These markers use a custom icon, but I'd also like to add numbers on top. I've seen how this has been accomplished using older versions of the ...
8
votes
1answer
2k views

Android, google maps and drawing route

Few weeks ago I was searching form good example how to get points & draw the route on Google maps in Android OS. Here I post example... example URL you're going to parse is... ...
8
votes
1answer
5k views

Can I re-style google map's infowindows to look less crappy?

The chunky speech bubble things look pretty crap in my opinion, i'd like something much tidier and more minimal. Are there any native ways to change the info box style without manually replacing the ...
8
votes
1answer
5k views

Google Maps: how to get country, state/province/region, city given a lat/long value?

I need a list of countries, states & cities based on a collection of lat/long values I have. I need to store this information in a manner that hierarchy is preserve and without duplicates (e.g. ...
8
votes
4answers
2k views

Google Maps API v3 adding an InfoWindow to each marker

NOTE: I'm using v3 of the Google Maps API I'm trying to add an info window to each marker I put on the map. Currently I'm doing this with the following code: for (var i in ...
8
votes
4answers
3k views

How do I limit panning in Google maps API V3?

In V2 there was a way to limit panning/dragging so the map stays within certain bounds. How is that done in V3? Let's say I want the users to only look at Europe. I've already limited the zoom, but ...
8
votes
2answers
5k views

Closing any open info windows in google maps api v3

As the title states, on a given event (for me this happens to be upon opening a new google.maps.InfoWindow I want to be able to close any other currently open info windows. Right now, I can open many ...
7
votes
3answers
3k views

Google Earth integrated with Google Maps API v3?

I'm trying to integrate Google Earth into Google Maps, and I saw it was possible in v2. But I can't find any doc about how to do so with v3... Any idea? Thanks!
7
votes
2answers
5k views

How to make cross-domain AJAX calls to Google Maps API?

I'm trying to make a jQuery $.getJSON call to the Google Maps Geocoding webservice, but this doesn't work because of cross-domain security issues. I haven't been able to figure it out online, but ...
7
votes
5answers
11k views

Google Maps: Auto close open InfoWindows?

On my site, I'm using Google Maps API v3 to place house markers on the map. The InfoWindows stay open unless you explicitly click the close icon. Meaning, you can have 2+ InfoWindows open at a time ...
6
votes
2answers
281 views

Google Maps API v3: How to Set Zoom Level And Map Center To User Submitted Location?

I have used this tutorial from Google to build a web app that finds the closest store from the user entered location: http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html I have my app ...
6
votes
1answer
123 views

Drawing directions on Google Maps

I think this would be very basic question. I am building an application using codigniter in which the users have to mark the destination on the map and Google Maps should automatically draw a route ...
6
votes
1answer
72 views

How can I give focus back to object with lower z-index, trying to create a series of transparent divs on top of a map

If I have a parent div that contains a child div on top of it, can I give the parent div the focus without hiding the child div? I am using Google Maps API and would like to draw a grid of ...
6
votes
1answer
560 views

PHP code for adding new place to Google Places via API

I'm working on integrating Google's Places API into a web app. I've been able to successfully create code to allow users to search for places using the API and to display results in the app, so ...
6
votes
2answers
776 views

Setting a Google Maps viewport to automatically fit pane for locations of (n) markers of various locations

The approach I took thus far has been: function addMarker( query ) { var geocoder = new google.maps.Geocoder(); var afterGeocode = $.Deferred(); // Geocode 'query' which is the address ...
6
votes
2answers
493 views

Showing map copyright in GMaps API V3

I'm currently migrating an application from GMaps V2 to V3. As I use OSM and other non-Google map layers, I want to keep the copyright notice at the bottom right. But the reference documentation ...
6
votes
1answer
675 views

Google Maps V3 snap to nearest Street

When I click into a map I want the marker to get snaped to the nearest street. There is a good exmaple here: http://econym.org.uk/gmap/example_snappath.htm (Main ...
6
votes
1answer
360 views

Can I use the Google Streeview API with my own images?

Title pretty much says it all. I want to use streeview for an area not on google maps, so could I add my own roads and then add my own panoramic images for streetview? It's also for personal use, ...
6
votes
4answers
1k views

RGB value to HSL converter

Google maps api v3 allows "styles" to be applied to the map, including setting the color of various features. However, the color format it uses is HSL (or what seems like it): hue (an RGB hex ...
6
votes
2answers
881 views

Multiple circles -> One Polygon?

Using Google Maps API v3, I was able to create multiple google.maps.Circle objects on my map. However, I now need to "connect" them somehow. I have the following map with multiple circles: I now ...
6
votes
3answers
10k views

Using Google Maps API to get Address of Business

Hello Guys I have a requirement and I am hoping Google Maps API will have a solution. I have never used Google Maps API - so I am very new to this. On the website homepage there is a form, when a ...
6
votes
3answers
14k views

Google Maps API v3: How do I dynamically change the marker icon?

Using Google Maps API v3, how do I pro grammatically change the marker icon? What I would like to do is, when someone hovers over a link - to have the corresponding marker icon on the map change ...
6
votes
4answers
8k views

How to call fromLatLngToDivPixel in Google Maps API V3?

I know that method exists and is documented, but I don't know how to get an MapCanvasProjection object.
5
votes
0answers
84 views

I need to take data about a dynamic Google map and create a static Google map from it using API V3

What I really want to do is to allow a user to create a map with google maps and save the image. I have attempted a work around that does this by using the google maps api V3 and also the static maps ...
5
votes
2answers
160 views

Google Maps V3 Circle & Circle that I created do not match

I created a circle using the Google Maps V3 API and also tried to make a circle of markers with the same radius. Problem: The one I created is oblique while the one by Google Maps is a nice round ...
5
votes
2answers
286 views

Server-side clustering for google maps api v3

I am currently developing a kind of google maps overview widget that displays locations as markers on the map. The amount of markers varies from several hundreds up to thousands of markers (10000 up). ...
5
votes
6answers
861 views

Google Maps API V3 Usage Limits is Per Website Visitor or Per Web Server?

I'm confused over whether the API usage limits of 2500 geocoding requests per day ( http://code.google.com/apis/maps/documentation/geocoding/#Limits ) and 25,000 Javascript maps per day ( ...
5
votes
5answers
888 views

Google Static Maps URL length limit

I have 153 markers and need to generate a static map with them, but when put them in the url i get an error like this: 414 Request-Uri Too Large My url is something like this ...

1 2 3 4 5 52