The fitbounds tag has no wiki summary.
0
votes
0answers
21 views
fitBounds and extend - showing up at a completely different place
var classBounds = new google.maps.LatLngBounds();
var query = "";
query = "SELECT 'ROAD_NUMBER', 'geometry' FROM [TABLE_ID HERE] WHERE 'ROAD_NUMBER' CONTAINS IGNORING CASE '" + searchString + "' AND ...
0
votes
1answer
85 views
Google Maps API fitBounds doesn't set zoom correctly
I'm have an issue where I don't think the fitBounds call is setting the zoom level appropriately. I have managed to reproduce my test case here http://tom.haddons.net/map.html - basically the four ...
0
votes
0answers
35 views
google maps not calculating the best zoom for the labels plotted
fitbounds() not calculating the best zoom so that all the labels are visible to the user. actually the labels are plotted at the edge of the map container and is partially visible. the map container ...
0
votes
2answers
169 views
Fit Bounds in Google Map Render Directions
I am trying to render directions for 48 waypoints, but google only allows 8 waypoints to be rendered per request. so I do multiple requests (in my case 6). However, the API somehow doed fitBounds() ...
0
votes
2answers
248 views
Google maps draggable marker zoom to fit all markers
I have a working version of map with a draggable marker. Zoom-in to include all markers works
bounds.extend(results[0].geometry.location);
map.fitBounds(bounds);
where results[0].geometry.location ...
0
votes
1answer
297 views
bounds google maps
My Google maps API map zooms put to show all the markers added after a google places search. On a mobile map this can take a bit to load and as this app for cyclists I prefer to only show the results ...
0
votes
2answers
379 views
Google Maps API fitBounds resulting in 0,0 location
I am trying to use the following lines of code to fit the map bounds to the markers:
var latlngbounds = new google.maps.LatLngBounds();
latlngbounds.extend(latlng);
map.fitBounds(latlngbounds); ...
1
vote
0answers
108 views
Do not fire 'zoom_changed' event when fitbounds() is in used
In my init i have some thing like this
google.maps.event.addListener(gmap, 'zoom_changed', function(){
GMapPlot.getSwNe(window.gmap.getBounds());
//GMapPlot.rePlotMap(presentPlaceType);
});
...
0
votes
1answer
335 views
Center map and zoom to fit the markers on the screen
I have the following code to detect the visitors GPS position and show it on the Google Maps JavaScript v3 map. Everything works as I want it but the code will not center or zoom as I want - it simple ...
4
votes
1answer
221 views
Fitting piecewise function in gnuplot
I want to fit multiple bounded functions in gnuplot, fitting the bound values as well.
For example:
f(x)=a (for x < b)
f(x)=a+(x-b)**c (for x > b)
fit f(x) 'data.dat' via a,b,c
Is ...
0
votes
1answer
210 views
Google Maps V3 fitBounds zooms to a closer view when called a second time with the same bounds
function ZoomCenter(bounds, canvas)
{
var center = bounds.getCenter();
if (canvas.getMapTypeId() == "roadmap") canvas.fitBounds(bounds);
else
{
var maxZoomService = new ...
2
votes
3answers
627 views
fitBounds() shows whole earth (if map is first hidden and then shown)
I have a bunch or markers, and I want to show only the area containing them. I found a long list of similar questions (see at the bottom of the post for some), but none of the solutions works for me. ...
0
votes
1answer
140 views
How to overwrite Google Map initialized opts with fitBounds();
I've been searching for a way to overwrite a Google map's center latlng and zoom using the fitBounds() method. As you can see I have an array of latlng coordinates which I would like to all fit within ...
6
votes
2answers
2k views
Google Maps API v3 - Geocoder results issue with bounds
Goal: I want to have a custom search (geocode) function and be able to list and click
each result and display it on the map.
Wanted: Adjust map bounds / zoom level accordingly, i.e. searching for ...
0
votes
3answers
1k 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 ...
1
vote
0answers
358 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
289 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
1answer
559 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 ...
1
vote
2answers
371 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
2k 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 ...
4
votes
3answers
3k 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.
...
2
votes
2answers
6k 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), ...
16
votes
10answers
8k 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 ...
3
votes
7answers
4k 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 ...
3
votes
4answers
5k 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 ...
15
votes
5answers
11k 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 ...
...
21
votes
2answers
32k 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 ...
4
votes
1answer
3k 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 ...
58
votes
15answers
40k 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 ...
