Files
openlayers/src/ol/source/wmssource.js
2014-01-09 15:27:56 +01:00

19 lines
292 B
JavaScript

goog.provide('ol.source.wms');
goog.provide('ol.source.wms.ServerType');
/**
* @define {string} WMS default version.
*/
ol.source.wms.DEFAULT_VERSION = '1.3.0';
/**
* @enum {string}
*/
ol.source.wms.ServerType = {
GEOSERVER: 'geoserver',
MAPSERVER: 'mapserver',
QGIS: 'qgis'
};