After selecting an area and the 'boxzoomend' event is done, the 'zoomstart' event is trigger.
Anyone know how to disable this zoom event to occur?
map.on('boxzoomend', function(e) {
console.log('box zoom end', e);});
map.on('zoomstart', function(e) {
console.log('zoom start', e);});
Please see this demo: http://jsfiddle.net/5VLJU/324/
I don't want to zoom after selecting the area, i want to use the zoom box functionality to be able to select markers which will be inside the selected area.
TO SELECT AREA: Shift + move mouse
Thanks