Remove property enum from map constructor

This commit is contained in:
Tim Schaub
2016-12-27 09:29:54 -07:00
parent 50b9e598f6
commit 0d3f792330
3 changed files with 29 additions and 27 deletions
+11
View File
@@ -0,0 +1,11 @@
goog.provide('ol.MapProperty');
/**
* @enum {string}
*/
ol.MapProperty = {
LAYERGROUP: 'layergroup',
SIZE: 'size',
TARGET: 'target',
VIEW: 'view'
};