Files
openlayers/src/ol/source/wmssource.js
Tim Schaub 24498fa9d0 Defines in a namespace that can be required
For consistency, all defines are in the ol namespace.  If they are to be moved to another namespace, they need to be requireable.
2014-04-30 09:14:10 -06:00

14 lines
237 B
JavaScript

goog.provide('ol.source.wms');
goog.provide('ol.source.wms.ServerType');
/**
* @enum {string}
*/
ol.source.wms.ServerType = {
CARMENTA_SERVER: 'carmentaserver',
GEOSERVER: 'geoserver',
MAPSERVER: 'mapserver',
QGIS: 'qgis'
};