Files
openlayers/src/ol/source/wmssource.js
2014-07-05 15:41:14 -04:00

18 lines
454 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}
* @api
*/
ol.source.wms.ServerType = {
CARMENTA_SERVER: 'carmentaserver',
GEOSERVER: 'geoserver',
MAPSERVER: 'mapserver',
QGIS: 'qgis'
};