Files
openlayers/src/ol/source/WMTSRequestEncoding.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

14 lines
273 B
JavaScript

/**
* @module ol/source/WMTSRequestEncoding
*/
/**
* Request encoding. One of 'KVP', 'REST'.
* @enum {string}
*/
var _ol_source_WMTSRequestEncoding_ = {
KVP: 'KVP', // see spec §8
REST: 'REST' // see spec §10
};
export default _ol_source_WMTSRequestEncoding_;