geoserver-api-reader
Version:
Build url to query geoserver api services.
39 lines • 1.13 kB
TypeScript
export default class GeojsonCache {
constructor(url: any);
_status: boolean;
_geojson: undefined;
_url: undefined;
get status(): boolean;
/**
* Url de una capa remota en formato geojson
* @param {String} url
*/
set url(url: string);
/**
* Carga y los guarda los datos de la capa
* en el etributo geojson de esta clase
* @returns Boolean
*/
guardarGeojson(): Promise<boolean>;
get geojson(): any;
get features(): any;
get properties(): any;
get geometrias(): any;
get vertices(): any;
get limites(): any;
get limitesTotales(): number[];
/**
* Devuelve el geojson con los datos de la capa
* aplicando el filtro que llega como parámetro
* @param {Function} filtro
* @returns
*/
geojsonFiltro(filtro: Function): any;
featuresFiltro(filtro: any): any;
propertiesFiltro(filtro: any): any;
geometriasFiltro(filtro: any): any;
verticesFiltro(filtro: any): any;
limitesFiltro(filtro: any): any;
limitesTotalesFiltro(filtro: any): number[];
}
//# sourceMappingURL=GeojsonCache.d.ts.map