We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
I have the same problem
Sorry, something went wrong.
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}); });
No branches or pull requests
Hi,
i need to change default map-zoom level of search result.
I try with this code but doesn't work :
Can someone help me?
The text was updated successfully, but these errors were encountered: