UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

8 lines (7 loc) 300 B
// SPDX-License-Identifier: Apache-2.0 import LayerWms from './layerwms.js'; import GroupLayer from './grouplayer.js'; const timeAwareLayer = [GroupLayer, LayerWms]; export const isTimeAwareLayer = (layer) => { return timeAwareLayer.some((ctr) => layer instanceof ctr) && !!layer.timeOptions; };