UNPKG

openlayers-test

Version:

Build tools and sources for developing OpenLayers based mapping applications

18 lines (15 loc) 454 B
goog.provide('ol.source.wms'); goog.provide('ol.source.wms.ServerType'); /** * Available server types: `'carmentaserver'`, `'geoserver'`, `'mapserver'`, * `'qgis'`. These are servers that have vendor parameters beyond the WMS * specification that OpenLayers can make use of. * @enum {string} * @api */ ol.source.wms.ServerType = { CARMENTA_SERVER: 'carmentaserver', GEOSERVER: 'geoserver', MAPSERVER: 'mapserver', QGIS: 'qgis' };