I have an overlay that is dynamically generated from user data, so I need to know how to find the center of that overlay.

Currently, I am just using the first coordinates from the overlay, but that really does not represent the center of the overlay. Therefore when I load the map, it is not centered on the overlay.

Does anyone have a good method for centering the map on the overlay, by calculating the center, not hard coding it?

var latlng = new google.maps.LatLng(38.269239, -122.276010);
    var myOptions = {
        zoom: 15,//Calculate this somehow?
        center: latlng,// Calculate value from array of coordinates?
        mapTypeId: google.maps.MapTypeId.HYBRID
    };
link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

If you have a list of coordinates, you can loop over them and add them to a LatLngBounds object. Here is a example for the V3 API, but the concept in V2 is similar:

var bounds = new google.maps.LatLngBounds();
for (var i = 0; i < coordinates.length; i++) {
    bounds.extend(coordinates[i]);
}

After that, you can get the center with:

bounds.getCenter();

Or alternatively, you can call map.fitBounds() directly, which will center the map around the center of the bounds and adjust the zoom, so that the whole bounds will fit exactly into the view port.

map.fitBounds(bounds);
link|improve this answer
You are awesome! Thank you, this worked just how I needed! – Nic Hubbard Jul 23 '10 at 18:12
Could this same method be used to calculate the zoom? – Nic Hubbard Jul 23 '10 at 18:13
Just use any position and zoom level you want during the initialization and call map.fitBounds(bounds); afterwards as described. If you want to enforce some maximum zoom level, you will need to register a zoomChangeBoundsListener temporarily. Tell me if you need an example for that too. – tux21b Jul 23 '10 at 18:20
Got it working, thank you. – Nic Hubbard Jul 23 '10 at 18:39
that worked alright in V2 of the api. in V3 the LatLngBounds must receive these 2 variables in this order: SW and NE, how do we know which is which? – andufo Sep 21 '11 at 1:22
feedback

The getCenter function of LatLngBounds doesn't always provide a point WITHIN the polyline. It seems that the algorithm used is to simple. I'm trying to find a solution and will publish it here if a found one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.