Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to plot more number of markers in google map

  <script type="text/javascript">
            // When map page opens get location and display map
            $('.page-map').live("pagecreate", function() {


            var latt=[13.0423734,12.918907];
            var lang=[80.2727993,80.145264];
            for(i=0; i<latt.length;i++)
            {
            initialize(latt[i],lang[i]);
            }
            });

            function initialize(lat,lng) 
            {
                var latlng = new google.maps.LatLng(lat,lng);
                var myOptions = {
                    zoom: 5,
                    center: latlng,
                    mapTypeId: google.maps.MapTypeId.ROADMAP
                };

                var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);
                var marker = new google.maps.Marker({
                  position: latlng, 
                  map: map, 
                  title:"Hello World!"
              });   
            }
        </script>
share|improve this question
have you tried to simply construct another marker as you do with this one? – naugtur Mar 29 '11 at 10:05

1 Answer

up vote 2 down vote accepted

Use arrays.

// When map page opens get location and display map
$('.page-map').live("pagecreate", function() {
    var latt=[13.0423734,12.918907];
    var lang=[80.2727993,80.145264];
    initialize(latt, lang);
});

function initialize(lat_arr,lng_arr)
{
    // Assuming first array element is where you want the map centered
    var latlng = new google.maps.LatLng(lat_arr[0],lng_arr[0]);
    var myOptions = {
        zoom: 5,
        center: latlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);
    var markers = [];
    // start i at 0 if you want a marker at the center as well
    for(var i = 1; i < lat_arr.length; i++) {
        latlng = new google.maps.LatLng(lat_arr[i], lng_arr[i]);
        markers[i] = new google.maps.Marker({
            position: latlng,
            map: map,
            title:"Hello World!"
        });
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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