Skip to content

useOlSnapComponent

useOlSnapComponent(): Snap

Defined in: src/ol-snap.tsx:82

Hook to access the OpenLayers Snap interaction instance from the nearest parent OlSnap component. Must be used within a descendant of OlSnap.

Snap

The OpenLayers Snap interaction instance

If called outside of an OlSnap component

function SnapControl() {
const snap = useOlSnapComponent()
// Use snap instance
return null
}