How to center and zoom into a Marker in Leaflet
You can achieve this using panTo() as below
map.setZoom(20); // zoom percentage
map.panTo([lat,long]); // pass lat & long
ALTERNATE TITLES
You can achieve this using panTo() as below
map.setZoom(20); // zoom percentage
map.panTo([lat,long]); // pass lat & long
ALTERNATE TITLES