geoserver-api-reader
Version:
Build url to query geoserver api services.
26 lines • 747 B
TypeScript
export default class GeoserverCapa {
constructor({ capa }: {
capa: any;
});
_getMap: GetMap;
_getLegendGraphic: GetLegendGraphic;
_getFeature: GetFeature;
id: any;
espacioDeTrabajo: any;
get getMap(): GetMap;
get getLegendGraphic(): GetLegendGraphic;
get getFeature(): GetFeature;
/**
* @param {string} filtro
*/
set filtro(filtro: string);
/**
* Recibe cómo parámetro el nombre del sld que se requiere aplicar a la capa
* @param {string} sld_name
*/
set estilo(sld_name: string);
}
import GetMap from './GetMap.js';
import GetLegendGraphic from './GetLegendGraphic.js';
import GetFeature from './GetFeature.js';
//# sourceMappingURL=GeoserverCapa.d.ts.map