Files
openlayers/src/ol/source/wmtsrequestencoding.js
2016-12-27 13:08:56 -07:00

11 lines
217 B
JavaScript

goog.provide('ol.source.WMTSRequestEncoding');
/**
* Request encoding. One of 'KVP', 'REST'.
* @enum {string}
*/
ol.source.WMTSRequestEncoding = {
KVP: 'KVP', // see spec §8
REST: 'REST' // see spec §10
};