UNPKG

@mapbox/mapbox-gl-draw

Version:

A drawing component for Mapbox GL JS

7 lines (5 loc) 212 B
function isEventAtCoordinates(event, coordinates) { if (!event.lngLat) return false; return event.lngLat.lng === coordinates[0] && event.lngLat.lat === coordinates[1]; } export default isEventAtCoordinates;