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.

I am trying to make a map with around 200 markers and for each marker an infowindow. I tested it with two markers. This is the site: http://www.bau-berater-kdr.de/pages/bauberater-karte.php

Code

<!DOCTYPE html>
 <html>
   <head> 
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
    <script src="http://maps.google.com/maps/api/js?sensor=false" 
      type="text/javascript"></script>
   </head> 

<body>
    <div id="map" style="width: 650px; height: 550px;"></div>

  <script type="text/javascript">
var locations = [
  ['Koehn, Andrej<br>Dipl. Ing. Architektur<br>', 52.5299, 13.4149, 2],
  ['List, Walter, Dipl. Ing. (FH)<br>Büro für Baubiologie u. Grundstücksbewertung<br><a href="http://www.Baubiologie-Mitteldeutschland.de">www.Baubiologie-Mitteldeutschland.de</a>', 51.4233, 12.2992, 1]
];

var map = new google.maps.Map(document.getElementById('map'), {
  zoom: 6,
  center: new google.maps.LatLng(52.5299, 13.4149),
  mapTypeId: google.maps.MapTypeId.ROADMAP
});

var infowindow = new google.maps.InfoWindow();

var marker, i;

for (i = 0; i < locations.length; i++) {  
  marker = new google.maps.Marker({
    position: new google.maps.LatLng(locations[i][1], locations[i][2]),
    map: map
  });

  google.maps.event.addListener(marker, 'click', (function(marker, i) {
    return function() {
      infowindow.setContent(locations[i][0]);
      infowindow.open(map, marker);
    }
  })(marker, i));
}
</script>
</body>

There is one main problem and I didn't found a solution: When you click on a marker you will see 2 vertical scrollbars.. only need one and I thought the window would auto-size. Would like to increase the height. Does anyone know a solution?

And if anybody knows how to make this easier for such an amount of markers, I would be deeply grateful!

share|improve this question
strange i copy and paste your code into a jsfiddle.net/kjy112/RTPrf and seems fine. you might have modified something with your css – kjy112 Mar 28 '11 at 20:03
thanks for the quick answer... mmh strange .. dont know where to look for in the css files... puh.. any idea? – solutionsearcher Mar 28 '11 at 20:31
can't really tell without seeing your css – kjy112 Mar 28 '11 at 20:32
sfm.hidrive.strato.com/lnk/1DlDnAA8 sfm.hidrive.strato.com/lnk/VLlDncNf sfm.hidrive.strato.com/lnk/0elDn6b3 i would very appreciate if you could look into it for english info for the download please klick sprache and choose english – solutionsearcher Mar 28 '11 at 20:46
1  
when i remove the div with width and height the hole map is not visible anymore..thanks for trying – solutionsearcher Mar 28 '11 at 21:01
show 1 more comment

1 Answer

Handling Large Amounts of Markers in Google Maps
I've had success using the MarkerClusterer option on a map with several thousand markers.

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.