UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

7 lines (6 loc) 246 B
// SPDX-License-Identifier: Apache-2.0 import LayerWms from './layerwms.js'; const snappableLayer = [LayerWms]; export const isSnappableLayer = (layer) => { return snappableLayer.some((ctr) => layer instanceof ctr) && !!layer.snapOptions; };