Dedicated module for WMTS request encoding enum

This commit is contained in:
Tim Schaub
2016-12-27 13:08:56 -07:00
parent 5d7135e4e7
commit d6bff223da
3 changed files with 23 additions and 22 deletions

View File

@@ -0,0 +1,10 @@
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
};