openlayers
Version:
Build tools and sources for developing OpenLayers based mapping applications
17 lines (14 loc) • 446 B
JavaScript
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}
*/
ol.source.wms.ServerType = {
CARMENTA_SERVER: 'carmentaserver',
GEOSERVER: 'geoserver',
MAPSERVER: 'mapserver',
QGIS: 'qgis'
};