Add ol.GeolocationProperty enum file

This commit is contained in:
Guillaume Beraudo
2017-01-18 13:44:45 +01:00
parent 1faead6d69
commit 6c9af04df3
2 changed files with 42 additions and 41 deletions
+18
View File
@@ -0,0 +1,18 @@
goog.provide('ol.GeolocationProperty');
/**
* @enum {string}
*/
ol.GeolocationProperty = {
ACCURACY: 'accuracy',
ACCURACY_GEOMETRY: 'accuracyGeometry',
ALTITUDE: 'altitude',
ALTITUDE_ACCURACY: 'altitudeAccuracy',
HEADING: 'heading',
POSITION: 'position',
PROJECTION: 'projection',
SPEED: 'speed',
TRACKING: 'tracking',
TRACKING_OPTIONS: 'trackingOptions'
};