leaflet-geoserver-request
Version:
This is the library for wms, wfs, legend, wmsImage request from geoserver to leaflet.
13 lines (10 loc) • 411 B
TypeScript
/// <reference types="leaflet" />
import * as L from 'leaflet';
declare module 'leaflet' {
namespace Geoserver {
export function wms(baseLayerUrl: any, options?: any): any;
export function wfs(baseLayerUrl: any, options?: any): any;
export function legend(baseLayerUrl: any, options?: any): any;
export function wmsImage(baseLayerUrl: any, options?: any): any;
}
}