hello tiny
/* function placeMarkersInBounds() { var mapBounds = map.getBounds(); for (var i = myMarkers.length -1; i >= 0; i--) { var m = myMarkers[i]; var shouldBeVisible = mapBounds.contains(m.getBounds()); if (m._icon && !shouldBeVisible) { map.removeLayer(m); } else if (!m._icon && shouldBeVisible) { map.addLayer(m); } } } */