Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eng-atwijukire/cf8de93c6135b675969e27b1b1684309 to your computer and use it in GitHub Desktop.
Save eng-atwijukire/cf8de93c6135b675969e27b1b1684309 to your computer and use it in GitHub Desktop.
Zoom and center a Leaflet map on a single marker.
function centerLeafletMapOnMarker(map, marker) {
var latLngs = [ marker.getLatLng() ];
var markerBounds = L.latLngBounds(latLngs);
map.fitBounds(markerBounds);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment