17 lines
446 B
JavaScript
17 lines
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'
|
|
};
|