UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

17 lines (16 loc) 603 B
import Feature from 'ol/Feature.js'; import Layer from './layer.js'; import Geometry from 'ol/geom/Geometry.js'; import { Extent } from 'ol/extent.js'; import ILayerWithLegend from './ilayerwithlegend.js'; declare class LayerLocalFile extends Layer implements ILayerWithLegend { _features: Feature<Geometry>[]; lastModifiedDate: string; legend: boolean; isLegendExpanded: boolean; wasLegendExpanded: boolean; extent: Extent; constructor(file: File, features: Feature<Geometry>[], extent: Extent, locale: string); clone(): LayerLocalFile; } export default LayerLocalFile;