Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
11answers
13k views

Google Maps API v3: Can I setZoom after fitBounds?

I have a set of points I want to plot on an embedded Google Map (API v3). I'd like the bounds to accommodate all points unless the zoom level is too low (i.e., zoomed out too much). My approach has ...
11
votes
1answer
16k 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 ... ...
7
votes
5answers
2k views

Google Maps v3 fitBounds() Zoom too close for single marker

Is there a way to set a max zoom level for fitBounds()? My problem is that when the map is only fed one location, it zooms in as far as it can go, which really takes the map out of context and ...
4
votes
1answer
1k views

setbounds on google maps api v3

I'm trying to set the bounds of a map fitbounds doesnt work because it puts some space around the bounds therefore doing {{{map.fitBounds(map.getBounds())}}} a few times will quickly zoom the map ...
3
votes
3answers
2k views

Google Maps v3 - Automating Zoom Level?

I'm having the possibility to have multiple markers. Currently i'm using the map.fitBounds(bounds); In my css to have the map resized (bounds contains multiple latlng's). What am i doing ...
1
vote
1answer
72 views

goole maps API 3 zooms out on fitBounds

I've run into a problem where calling map.fitBounds seems to zoom out. I'm trying to use the backbone.js router to save the map bounds in the url. I want to be able to bookmark the url and later have ...
1
vote
1answer
962 views

Calling map.fitBounds() Multiple Times in Google Maps API v3.0

I've just begun using the Google Maps API (v3.0) and have had a good deal of success so far. I am loading a set of objects with Latitude & Longitude values from a database, passing them into my ...
1
vote
3answers
2k views

Google Maps map.getBounds() immediately after a call to map.fitBounds

I'm calling getBounds() directly after a call to fitBounds(), and I thought I'd get a valid bound back as the map recenters and zooms to fit the bounds. Unfortunately, getBounds() is returning nil. ...
1
vote
2answers
3k views

Google Maps fitBounds is not working properly

I have a problem with googlemaps fitBounds functions. for (var i = 0; i < countries.length; i++) { var country = countries[i]; var latlng = new google.maps.LatLng(parseFloat(country.lat), ...
0
votes
3answers
45 views

Javascript Google map api V3 fitbounds with center location

I want to fitbound pushpins to visible all around user's location pushpin. i wrote the following code it center the user location but few pushpin goes out of map ?? FYI: userPinLoc is pushpin object ...
0
votes
0answers
62 views

Google Maps API: Uncaught TypeError: Object #<kf> has no method 'fitBounds'

i'm trying to do a map with Google Maps Api v3. I have the map working, with the markers loaded ok from a XML file. But i need to center view to see all markers, I use this: var map = new ...
0
votes
1answer
66 views

google map v3 how fitbounds with zoom on user's location

I am using google v3, i want to fitbounds with center on userPinLoc object, i have the following code var bounds = new google.maps.LatLngBounds(); bounds.extend(userPinLoc)// wants to ...
0
votes
0answers
93 views

fitbounds for google maps api v3 doesn't center on my polylines

I want to be able to center zoom on all my polylines for my site. Also, I'd like to add markers to each of these new coordinate pairs. I've seen lots of examples for multiple markers and multiple ...
0
votes
5answers
2k views

Google Maps API V3 fitbounds() zooms out but never in

I've created a quite complex store locator of sorts. The user enters their zip and a table returns results with corresponding markers on a map. They can page through results and the markers move ...