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), parseFloat(country.lng));
mapBounds.extend(latlng);
}
map.fitBounds(mapBounds);
Some icons will be displayed outside the viewport / Visible area.
And idea?
Thanks in advance.
Consider the following example, which will generate 10 random points on the North East USA, and applies the
fitBounds()
method.Refreshing this example many times, no marker ever goes outside the viewport. At most, sometimes a marker is slightly clipped from the top when hidden behind the controls:
It is also worth nothing that the
fitBounds()
always leaves a small margin between theLatLngBounds
object and the viewport. This is clearly shown in the screenshots below, where the red bounding box represents theLatLngBounds
which is passed to thefitBounds()
method:You may also be interested in checking out the following Stack Overflow posts on the topic: