Map.flyTo does not respect Pan options noMoveStart #5396
Closed
Description
Map.flyTo does not respect Pan options noMoveStart
map.on('movestart', function () { console.log('should not be called') })
map.flyTo([1,1],16, {noStartMove: true})
when map is valid, console the event will be triggered and log to the console.
Line 417 in b997839