For consistency, all defines are in the ol namespace. If they are to be moved to another namespace, they need to be requireable.
14 lines
237 B
JavaScript
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'
|
|
};
|