UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

7 lines (6 loc) 255 B
import LayerWms from './layerwms'; import GroupLayer from './grouplayer'; const timeAwareLayer = [GroupLayer, LayerWms]; export const isTimeAwareLayer = (layer) => { return timeAwareLayer.some((ctr) => layer instanceof ctr) && !!layer.timeOptions; };