UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

12 lines (11 loc) 304 B
import { GMFBackgroundLayer } from './gmf'; import BaseLayer from './layers/baselayer'; declare class Basemap { id: number; name: string; thumbnail: string; layersList: BaseLayer[]; constructor(elem: GMFBackgroundLayer); get projection(): string | null; } export default Basemap;