I use the following code to set markers on my map:

  var latLngs = []
  $.each(locations.markers, function(i, m){
   var myLatLng = new google.maps.LatLng(m.latitude, m.longitude);
   latLngs[i] = myLatLng                                          
   var marker = new google.maps.Marker({
    position: myLatLng,
    map: map,
    shadow: shadow,
    icon: image,
    shape: shape,
    title: m.city,
    zIndex: i
   });
  }) 

the markers show up on my map. now i would like to center & zoom the map on these markers. How can i accomplish that? I have tried:

map.fitBounds(getBoundsForLatLngs(latLngs));

the console.log of latLngs gives out:

 [(46.793182, 7.146903) { b=46.793182,  more...}, (46.8077779, 7.1709386) { b=46.8077779,  more...}]

But it seams not work and i get no error in the console. What i am doing wrong?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

did you try adding:

zoom: 10,
center: myLatlng,

to your marker object ?

I've also find this fix that zooms to fit all markers

Update: another fix I've found online:

// map: an instance of GMap3
// latlng: an array of instances of GLatLng
var latlngbounds = new google.maps.LatLngBounds();
latlng.each(function(n){
   latlngbounds.extend(n);
});
map.setCenter(latlngbounds.getCenter());
map.fitBounds(latlngbounds); 
link|improve this answer
this centers the map on one point i want to center the map on all shown points – meo May 12 '10 at 13:10
try this! blog.shamess.info/2009/09/29/… – vsync May 12 '10 at 13:13
it worked i had to use LatLngBounds just like your example. I passed my array directly to fitBounds(). Thx for you fast support – meo May 12 '10 at 13:22
I'm glad it worked out for you :) – vsync May 12 '10 at 13:24
feedback

Can you trace the latLngs in console? I think your array mignt not be a continuous one (e.g. [0, 1, 2, 3, 5]) or some of the latlngs in that array might have invalid lat/lng values.

link|improve this answer
this is the result of the console: ` [(46.793182, 7.146903) { b=46.793182, more...}, (46.8077779, 7.1709386) { b=46.8077779, more...}]` – meo May 12 '10 at 13:14
How could i be so silly to forget that I wrote an article about centering + zooming to fit all markers. – Salman A May 12 '10 at 14:04
feedback

Try this funtion....it works...

$(function() {
        var myOptions = {
            zoom: 10,
            center: latlng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);
        var latlng_pos=[];
        var j=0;
         $(".property_item").each(function(){
            latlng_pos[j]=new google.maps.LatLng($(this).find(".latitude").val(),$(this).find(".longitude").val());
            j++;
            var marker = new google.maps.Marker({
                position: new google.maps.LatLng($(this).find(".latitude").val(),$(this).find(".longitude").val()),
                // position: new google.maps.LatLng(-35.397, 150.640),
                map: map
            });
        }
        );
        // map: an instance of google.maps.Map object
        // latlng: an array of google.maps.LatLng objects
        var latlngbounds = new google.maps.LatLngBounds( );
        for ( var i = 0; i < latlng_pos.length; i++ ) {
            latlngbounds.extend( latlng_pos[ i ] );
        }
        map.fitBounds( latlngbounds );



    });
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.