Skip to content

Instantly share code, notes, and snippets.

@jeffreymorganio
Created July 5, 2016 15:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jeffreymorganio/359591dee3b08323d7f5609206ea4fcc to your computer and use it in GitHub Desktop.
Save jeffreymorganio/359591dee3b08323d7f5609206ea4fcc 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