Problem:
You use google map API to show locations. You have multiple markers. Some markers do not shown in map (zoom is not enough big?)
Solution:
// var markers = //some array;
var bounds = new google.maps.LatLngBounds();
for(i=0;i
bounds.extend(markers[i].getPosition());
}
map.fitBounds(bounds);