Files
openlayers/src/ol/source/WMTSRequestEncoding.js
Tim Schaub b8c9125602 Remove lint
2018-07-18 10:35:54 -06:00

13 lines
201 B
JavaScript

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