leaflet-control-geocoder
leaflet-control-geocoder copied to clipboard
how to set custom zoom into map when location found
Hi, i need to change default map-zoom level of search result. I try with this code but doesn't work :
.on('markgeocode', function(e) {
map.setZoomAround(e.geocode.bbox.getCenter(), 10);
})
Can someone help me?
I have the same problem
in the meantime found a workaround for me:
var initial_zoom = 17;
.
.
var map = L.map('map', mapOptions);
.
.
var myGeocoder = L.Control.geocoder(geoCoderOptions).addTo(map);
.
.
myGeocoder.on('markgeocode', function(e) {
map.setZoom(initial_zoom, {animate: false});
});