diff --git a/src/ol/control/mousepositioncontrol.js b/src/ol/control/mousepositioncontrol.js index ef558344aa..e39412babd 100644 --- a/src/ol/control/mousepositioncontrol.js +++ b/src/ol/control/mousepositioncontrol.js @@ -139,10 +139,6 @@ ol.control.MousePosition.prototype.getCoordinateFormat = function() { return /** @type {ol.CoordinateFormatType|undefined} */ ( this.get(ol.control.MousePositionProperty.COORDINATE_FORMAT)); }; -goog.exportProperty( - ol.control.MousePosition.prototype, - 'getCoordinateFormat', - ol.control.MousePosition.prototype.getCoordinateFormat); /** @@ -155,10 +151,6 @@ ol.control.MousePosition.prototype.getProjection = function() { return /** @type {ol.proj.Projection|undefined} */ ( this.get(ol.control.MousePositionProperty.PROJECTION)); }; -goog.exportProperty( - ol.control.MousePosition.prototype, - 'getProjection', - ol.control.MousePosition.prototype.getProjection); /** @@ -209,10 +201,6 @@ ol.control.MousePosition.prototype.setMap = function(map) { ol.control.MousePosition.prototype.setCoordinateFormat = function(format) { this.set(ol.control.MousePositionProperty.COORDINATE_FORMAT, format); }; -goog.exportProperty( - ol.control.MousePosition.prototype, - 'setCoordinateFormat', - ol.control.MousePosition.prototype.setCoordinateFormat); /** @@ -224,10 +212,6 @@ goog.exportProperty( ol.control.MousePosition.prototype.setProjection = function(projection) { this.set(ol.control.MousePositionProperty.PROJECTION, projection); }; -goog.exportProperty( - ol.control.MousePosition.prototype, - 'setProjection', - ol.control.MousePosition.prototype.setProjection); /** diff --git a/src/ol/control/scalelinecontrol.js b/src/ol/control/scalelinecontrol.js index 0b71323a21..cf5eeb1e49 100644 --- a/src/ol/control/scalelinecontrol.js +++ b/src/ol/control/scalelinecontrol.js @@ -150,10 +150,6 @@ ol.control.ScaleLine.prototype.getUnits = function() { return /** @type {ol.control.ScaleLineUnits|undefined} */ ( this.get(ol.control.ScaleLineProperty.UNITS)); }; -goog.exportProperty( - ol.control.ScaleLine.prototype, - 'getUnits', - ol.control.ScaleLine.prototype.getUnits); /** @@ -188,10 +184,6 @@ ol.control.ScaleLine.prototype.handleUnitsChanged_ = function() { ol.control.ScaleLine.prototype.setUnits = function(units) { this.set(ol.control.ScaleLineProperty.UNITS, units); }; -goog.exportProperty( - ol.control.ScaleLine.prototype, - 'setUnits', - ol.control.ScaleLine.prototype.setUnits); /** diff --git a/src/ol/deviceorientation.js b/src/ol/deviceorientation.js index 77e9d9c1e1..35b9a3b6fe 100644 --- a/src/ol/deviceorientation.js +++ b/src/ol/deviceorientation.js @@ -147,10 +147,6 @@ ol.DeviceOrientation.prototype.getAlpha = function() { return /** @type {number|undefined} */ ( this.get(ol.DeviceOrientationProperty.ALPHA)); }; -goog.exportProperty( - ol.DeviceOrientation.prototype, - 'getAlpha', - ol.DeviceOrientation.prototype.getAlpha); /** @@ -164,10 +160,6 @@ ol.DeviceOrientation.prototype.getBeta = function() { return /** @type {number|undefined} */ ( this.get(ol.DeviceOrientationProperty.BETA)); }; -goog.exportProperty( - ol.DeviceOrientation.prototype, - 'getBeta', - ol.DeviceOrientation.prototype.getBeta); /** @@ -181,10 +173,6 @@ ol.DeviceOrientation.prototype.getGamma = function() { return /** @type {number|undefined} */ ( this.get(ol.DeviceOrientationProperty.GAMMA)); }; -goog.exportProperty( - ol.DeviceOrientation.prototype, - 'getGamma', - ol.DeviceOrientation.prototype.getGamma); /** @@ -198,10 +186,6 @@ ol.DeviceOrientation.prototype.getHeading = function() { return /** @type {number|undefined} */ ( this.get(ol.DeviceOrientationProperty.HEADING)); }; -goog.exportProperty( - ol.DeviceOrientation.prototype, - 'getHeading', - ol.DeviceOrientation.prototype.getHeading); /** @@ -214,10 +198,6 @@ ol.DeviceOrientation.prototype.getTracking = function() { return /** @type {boolean} */ ( this.get(ol.DeviceOrientationProperty.TRACKING)); }; -goog.exportProperty( - ol.DeviceOrientation.prototype, - 'getTracking', - ol.DeviceOrientation.prototype.getTracking); /** @@ -247,7 +227,3 @@ ol.DeviceOrientation.prototype.handleTrackingChanged_ = function() { ol.DeviceOrientation.prototype.setTracking = function(tracking) { this.set(ol.DeviceOrientationProperty.TRACKING, tracking); }; -goog.exportProperty( - ol.DeviceOrientation.prototype, - 'setTracking', - ol.DeviceOrientation.prototype.setTracking); diff --git a/src/ol/feature.js b/src/ol/feature.js index d2ba88dbad..18c0af3438 100644 --- a/src/ol/feature.js +++ b/src/ol/feature.js @@ -148,10 +148,6 @@ ol.Feature.prototype.getGeometry = function() { return /** @type {ol.geom.Geometry|undefined} */ ( this.get(this.geometryName_)); }; -goog.exportProperty( - ol.Feature.prototype, - 'getGeometry', - ol.Feature.prototype.getGeometry); /** @@ -233,10 +229,6 @@ ol.Feature.prototype.handleGeometryChanged_ = function() { ol.Feature.prototype.setGeometry = function(geometry) { this.set(this.geometryName_, geometry); }; -goog.exportProperty( - ol.Feature.prototype, - 'setGeometry', - ol.Feature.prototype.setGeometry); /** diff --git a/src/ol/geolocation.js b/src/ol/geolocation.js index 62322a3260..62dc0f67ea 100644 --- a/src/ol/geolocation.js +++ b/src/ol/geolocation.js @@ -199,10 +199,6 @@ ol.Geolocation.prototype.getAccuracy = function() { return /** @type {number|undefined} */ ( this.get(ol.GeolocationProperty.ACCURACY)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getAccuracy', - ol.Geolocation.prototype.getAccuracy); /** @@ -215,10 +211,6 @@ ol.Geolocation.prototype.getAccuracyGeometry = function() { return /** @type {?ol.geom.Geometry} */ ( this.get(ol.GeolocationProperty.ACCURACY_GEOMETRY) || null); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getAccuracyGeometry', - ol.Geolocation.prototype.getAccuracyGeometry); /** @@ -232,10 +224,6 @@ ol.Geolocation.prototype.getAltitude = function() { return /** @type {number|undefined} */ ( this.get(ol.GeolocationProperty.ALTITUDE)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getAltitude', - ol.Geolocation.prototype.getAltitude); /** @@ -249,10 +237,6 @@ ol.Geolocation.prototype.getAltitudeAccuracy = function() { return /** @type {number|undefined} */ ( this.get(ol.GeolocationProperty.ALTITUDE_ACCURACY)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getAltitudeAccuracy', - ol.Geolocation.prototype.getAltitudeAccuracy); /** @@ -265,10 +249,6 @@ ol.Geolocation.prototype.getHeading = function() { return /** @type {number|undefined} */ ( this.get(ol.GeolocationProperty.HEADING)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getHeading', - ol.Geolocation.prototype.getHeading); /** @@ -282,10 +262,6 @@ ol.Geolocation.prototype.getPosition = function() { return /** @type {ol.Coordinate|undefined} */ ( this.get(ol.GeolocationProperty.POSITION)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getPosition', - ol.Geolocation.prototype.getPosition); /** @@ -299,10 +275,6 @@ ol.Geolocation.prototype.getProjection = function() { return /** @type {ol.proj.Projection|undefined} */ ( this.get(ol.GeolocationProperty.PROJECTION)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getProjection', - ol.Geolocation.prototype.getProjection); /** @@ -316,10 +288,6 @@ ol.Geolocation.prototype.getSpeed = function() { return /** @type {number|undefined} */ ( this.get(ol.GeolocationProperty.SPEED)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getSpeed', - ol.Geolocation.prototype.getSpeed); /** @@ -332,10 +300,6 @@ ol.Geolocation.prototype.getTracking = function() { return /** @type {boolean} */ ( this.get(ol.GeolocationProperty.TRACKING)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getTracking', - ol.Geolocation.prototype.getTracking); /** @@ -351,10 +315,6 @@ ol.Geolocation.prototype.getTrackingOptions = function() { return /** @type {GeolocationPositionOptions|undefined} */ ( this.get(ol.GeolocationProperty.TRACKING_OPTIONS)); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'getTrackingOptions', - ol.Geolocation.prototype.getTrackingOptions); /** @@ -367,10 +327,6 @@ goog.exportProperty( ol.Geolocation.prototype.setProjection = function(projection) { this.set(ol.GeolocationProperty.PROJECTION, projection); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'setProjection', - ol.Geolocation.prototype.setProjection); /** @@ -382,10 +338,6 @@ goog.exportProperty( ol.Geolocation.prototype.setTracking = function(tracking) { this.set(ol.GeolocationProperty.TRACKING, tracking); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'setTracking', - ol.Geolocation.prototype.setTracking); /** @@ -400,7 +352,3 @@ goog.exportProperty( ol.Geolocation.prototype.setTrackingOptions = function(options) { this.set(ol.GeolocationProperty.TRACKING_OPTIONS, options); }; -goog.exportProperty( - ol.Geolocation.prototype, - 'setTrackingOptions', - ol.Geolocation.prototype.setTrackingOptions); diff --git a/src/ol/interaction/interaction.js b/src/ol/interaction/interaction.js index dae4ef1e4e..833901a8ec 100644 --- a/src/ol/interaction/interaction.js +++ b/src/ol/interaction/interaction.js @@ -65,10 +65,6 @@ ol.interaction.Interaction.prototype.getActive = function() { return /** @type {boolean} */ ( this.get(ol.interaction.InteractionProperty.ACTIVE)); }; -goog.exportProperty( - ol.interaction.Interaction.prototype, - 'getActive', - ol.interaction.Interaction.prototype.getActive); /** @@ -89,10 +85,6 @@ ol.interaction.Interaction.prototype.getMap = function() { ol.interaction.Interaction.prototype.setActive = function(active) { this.set(ol.interaction.InteractionProperty.ACTIVE, active); }; -goog.exportProperty( - ol.interaction.Interaction.prototype, - 'setActive', - ol.interaction.Interaction.prototype.setActive); /** diff --git a/src/ol/interaction/snapinteraction.js b/src/ol/interaction/snapinteraction.js index baef471b5a..576fcfc5f5 100644 --- a/src/ol/interaction/snapinteraction.js +++ b/src/ol/interaction/snapinteraction.js @@ -178,10 +178,6 @@ ol.interaction.Snap.prototype.addFeature = function(feature, opt_listen) { } } }; -goog.exportProperty( - ol.interaction.Snap.prototype, - 'addFeature', - ol.interaction.Snap.prototype.addFeature); /** @@ -311,10 +307,6 @@ ol.interaction.Snap.prototype.removeFeature = function(feature, opt_unlisten) { } } }; -goog.exportProperty( - ol.interaction.Snap.prototype, - 'removeFeature', - ol.interaction.Snap.prototype.removeFeature); /** diff --git a/src/ol/layer/heatmaplayer.js b/src/ol/layer/heatmaplayer.js index 93dfef24dd..28c46f690a 100644 --- a/src/ol/layer/heatmaplayer.js +++ b/src/ol/layer/heatmaplayer.js @@ -198,10 +198,6 @@ ol.layer.Heatmap.prototype.createCircle_ = function() { ol.layer.Heatmap.prototype.getBlur = function() { return /** @type {number} */ (this.get(ol.layer.HeatmapLayerProperty.BLUR)); }; -goog.exportProperty( - ol.layer.Heatmap.prototype, - 'getBlur', - ol.layer.Heatmap.prototype.getBlur); /** @@ -213,10 +209,6 @@ ol.layer.Heatmap.prototype.getGradient = function() { return /** @type {Array.} */ ( this.get(ol.layer.HeatmapLayerProperty.GRADIENT)); }; -goog.exportProperty( - ol.layer.Heatmap.prototype, - 'getGradient', - ol.layer.Heatmap.prototype.getGradient); /** @@ -227,10 +219,6 @@ goog.exportProperty( ol.layer.Heatmap.prototype.getRadius = function() { return /** @type {number} */ (this.get(ol.layer.HeatmapLayerProperty.RADIUS)); }; -goog.exportProperty( - ol.layer.Heatmap.prototype, - 'getRadius', - ol.layer.Heatmap.prototype.getRadius); /** @@ -285,10 +273,6 @@ ol.layer.Heatmap.prototype.handleRender_ = function(event) { ol.layer.Heatmap.prototype.setBlur = function(blur) { this.set(ol.layer.HeatmapLayerProperty.BLUR, blur); }; -goog.exportProperty( - ol.layer.Heatmap.prototype, - 'setBlur', - ol.layer.Heatmap.prototype.setBlur); /** @@ -299,10 +283,6 @@ goog.exportProperty( ol.layer.Heatmap.prototype.setGradient = function(colors) { this.set(ol.layer.HeatmapLayerProperty.GRADIENT, colors); }; -goog.exportProperty( - ol.layer.Heatmap.prototype, - 'setGradient', - ol.layer.Heatmap.prototype.setGradient); /** @@ -313,7 +293,3 @@ goog.exportProperty( ol.layer.Heatmap.prototype.setRadius = function(radius) { this.set(ol.layer.HeatmapLayerProperty.RADIUS, radius); }; -goog.exportProperty( - ol.layer.Heatmap.prototype, - 'setRadius', - ol.layer.Heatmap.prototype.setRadius); diff --git a/src/ol/layer/layer.js b/src/ol/layer/layer.js index b50d21942e..989cf70389 100644 --- a/src/ol/layer/layer.js +++ b/src/ol/layer/layer.js @@ -93,10 +93,6 @@ ol.layer.Layer.prototype.getSource = function() { return goog.isDef(source) ? /** @type {ol.source.Source} */ (source) : null; }; -goog.exportProperty( - ol.layer.Layer.prototype, - 'getSource', - ol.layer.Layer.prototype.getSource); /** @@ -142,7 +138,3 @@ ol.layer.Layer.prototype.handleSourcePropertyChange_ = function() { ol.layer.Layer.prototype.setSource = function(source) { this.set(ol.layer.LayerProperty.SOURCE, source); }; -goog.exportProperty( - ol.layer.Layer.prototype, - 'setSource', - ol.layer.Layer.prototype.setSource); diff --git a/src/ol/layer/layerbase.js b/src/ol/layer/layerbase.js index c1aca6f463..0a5aaa4438 100644 --- a/src/ol/layer/layerbase.js +++ b/src/ol/layer/layerbase.js @@ -94,10 +94,6 @@ goog.inherits(ol.layer.Base, ol.Object); ol.layer.Base.prototype.getBrightness = function() { return /** @type {number} */ (this.get(ol.layer.LayerProperty.BRIGHTNESS)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getBrightness', - ol.layer.Base.prototype.getBrightness); /** @@ -108,10 +104,6 @@ goog.exportProperty( ol.layer.Base.prototype.getContrast = function() { return /** @type {number} */ (this.get(ol.layer.LayerProperty.CONTRAST)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getContrast', - ol.layer.Base.prototype.getContrast); /** @@ -122,10 +114,6 @@ goog.exportProperty( ol.layer.Base.prototype.getHue = function() { return /** @type {number} */ (this.get(ol.layer.LayerProperty.HUE)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getHue', - ol.layer.Base.prototype.getHue); /** @@ -183,10 +171,6 @@ ol.layer.Base.prototype.getExtent = function() { return /** @type {ol.Extent|undefined} */ ( this.get(ol.layer.LayerProperty.EXTENT)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getExtent', - ol.layer.Base.prototype.getExtent); /** @@ -198,10 +182,6 @@ ol.layer.Base.prototype.getMaxResolution = function() { return /** @type {number} */ ( this.get(ol.layer.LayerProperty.MAX_RESOLUTION)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getMaxResolution', - ol.layer.Base.prototype.getMaxResolution); /** @@ -213,10 +193,6 @@ ol.layer.Base.prototype.getMinResolution = function() { return /** @type {number} */ ( this.get(ol.layer.LayerProperty.MIN_RESOLUTION)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getMinResolution', - ol.layer.Base.prototype.getMinResolution); /** @@ -227,10 +203,6 @@ goog.exportProperty( ol.layer.Base.prototype.getOpacity = function() { return /** @type {number} */ (this.get(ol.layer.LayerProperty.OPACITY)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getOpacity', - ol.layer.Base.prototype.getOpacity); /** @@ -241,10 +213,6 @@ goog.exportProperty( ol.layer.Base.prototype.getSaturation = function() { return /** @type {number} */ (this.get(ol.layer.LayerProperty.SATURATION)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getSaturation', - ol.layer.Base.prototype.getSaturation); /** @@ -261,10 +229,6 @@ ol.layer.Base.prototype.getSourceState = goog.abstractMethod; ol.layer.Base.prototype.getVisible = function() { return /** @type {boolean} */ (this.get(ol.layer.LayerProperty.VISIBLE)); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'getVisible', - ol.layer.Base.prototype.getVisible); /** @@ -292,10 +256,6 @@ goog.exportProperty( ol.layer.Base.prototype.setBrightness = function(brightness) { this.set(ol.layer.LayerProperty.BRIGHTNESS, brightness); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setBrightness', - ol.layer.Base.prototype.setBrightness); /** @@ -310,10 +270,6 @@ goog.exportProperty( ol.layer.Base.prototype.setContrast = function(contrast) { this.set(ol.layer.LayerProperty.CONTRAST, contrast); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setContrast', - ol.layer.Base.prototype.setContrast); /** @@ -326,10 +282,6 @@ goog.exportProperty( ol.layer.Base.prototype.setHue = function(hue) { this.set(ol.layer.LayerProperty.HUE, hue); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setHue', - ol.layer.Base.prototype.setHue); /** @@ -342,10 +294,6 @@ goog.exportProperty( ol.layer.Base.prototype.setExtent = function(extent) { this.set(ol.layer.LayerProperty.EXTENT, extent); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setExtent', - ol.layer.Base.prototype.setExtent); /** @@ -356,10 +304,6 @@ goog.exportProperty( ol.layer.Base.prototype.setMaxResolution = function(maxResolution) { this.set(ol.layer.LayerProperty.MAX_RESOLUTION, maxResolution); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setMaxResolution', - ol.layer.Base.prototype.setMaxResolution); /** @@ -370,10 +314,6 @@ goog.exportProperty( ol.layer.Base.prototype.setMinResolution = function(minResolution) { this.set(ol.layer.LayerProperty.MIN_RESOLUTION, minResolution); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setMinResolution', - ol.layer.Base.prototype.setMinResolution); /** @@ -384,10 +324,6 @@ goog.exportProperty( ol.layer.Base.prototype.setOpacity = function(opacity) { this.set(ol.layer.LayerProperty.OPACITY, opacity); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setOpacity', - ol.layer.Base.prototype.setOpacity); /** @@ -403,10 +339,6 @@ goog.exportProperty( ol.layer.Base.prototype.setSaturation = function(saturation) { this.set(ol.layer.LayerProperty.SATURATION, saturation); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setSaturation', - ol.layer.Base.prototype.setSaturation); /** @@ -417,7 +349,3 @@ goog.exportProperty( ol.layer.Base.prototype.setVisible = function(visible) { this.set(ol.layer.LayerProperty.VISIBLE, visible); }; -goog.exportProperty( - ol.layer.Base.prototype, - 'setVisible', - ol.layer.Base.prototype.setVisible); diff --git a/src/ol/layer/layergroup.js b/src/ol/layer/layergroup.js index dcc49e7aac..79a8d0f16c 100644 --- a/src/ol/layer/layergroup.js +++ b/src/ol/layer/layergroup.js @@ -155,10 +155,6 @@ ol.layer.Group.prototype.getLayers = function() { return /** @type {!ol.Collection.} */ (this.get( ol.layer.GroupProperty.LAYERS)); }; -goog.exportProperty( - ol.layer.Group.prototype, - 'getLayers', - ol.layer.Group.prototype.getLayers); /** @@ -170,10 +166,6 @@ goog.exportProperty( ol.layer.Group.prototype.setLayers = function(layers) { this.set(ol.layer.GroupProperty.LAYERS, layers); }; -goog.exportProperty( - ol.layer.Group.prototype, - 'setLayers', - ol.layer.Group.prototype.setLayers); /** diff --git a/src/ol/layer/tilelayer.js b/src/ol/layer/tilelayer.js index 394fd1a00e..baaf13f9f9 100644 --- a/src/ol/layer/tilelayer.js +++ b/src/ol/layer/tilelayer.js @@ -52,10 +52,6 @@ goog.inherits(ol.layer.Tile, ol.layer.Layer); ol.layer.Tile.prototype.getPreload = function() { return /** @type {number} */ (this.get(ol.layer.TileProperty.PRELOAD)); }; -goog.exportProperty( - ol.layer.Tile.prototype, - 'getPreload', - ol.layer.Tile.prototype.getPreload); /** @@ -74,10 +70,6 @@ ol.layer.Tile.prototype.getSource; ol.layer.Tile.prototype.setPreload = function(preload) { this.set(ol.layer.TileProperty.PRELOAD, preload); }; -goog.exportProperty( - ol.layer.Tile.prototype, - 'setPreload', - ol.layer.Tile.prototype.setPreload); /** @@ -89,10 +81,6 @@ ol.layer.Tile.prototype.getUseInterimTilesOnError = function() { return /** @type {boolean} */ ( this.get(ol.layer.TileProperty.USE_INTERIM_TILES_ON_ERROR)); }; -goog.exportProperty( - ol.layer.Tile.prototype, - 'getUseInterimTilesOnError', - ol.layer.Tile.prototype.getUseInterimTilesOnError); /** @@ -105,7 +93,3 @@ ol.layer.Tile.prototype.setUseInterimTilesOnError = this.set( ol.layer.TileProperty.USE_INTERIM_TILES_ON_ERROR, useInterimTilesOnError); }; -goog.exportProperty( - ol.layer.Tile.prototype, - 'setUseInterimTilesOnError', - ol.layer.Tile.prototype.setUseInterimTilesOnError); diff --git a/src/ol/map.js b/src/ol/map.js index 7cb8eb00f9..e83d8a7841 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -709,10 +709,6 @@ ol.Map.prototype.getTarget = function() { return /** @type {Element|string|undefined} */ ( this.get(ol.MapProperty.TARGET)); }; -goog.exportProperty( - ol.Map.prototype, - 'getTarget', - ol.Map.prototype.getTarget); /** @@ -790,10 +786,6 @@ ol.Map.prototype.getInteractions = function() { ol.Map.prototype.getLayerGroup = function() { return /** @type {ol.layer.Group} */ (this.get(ol.MapProperty.LAYERGROUP)); }; -goog.exportProperty( - ol.Map.prototype, - 'getLayerGroup', - ol.Map.prototype.getLayerGroup); /** @@ -843,10 +835,6 @@ ol.Map.prototype.getRenderer = function() { ol.Map.prototype.getSize = function() { return /** @type {ol.Size|undefined} */ (this.get(ol.MapProperty.SIZE)); }; -goog.exportProperty( - ol.Map.prototype, - 'getSize', - ol.Map.prototype.getSize); /** @@ -859,10 +847,6 @@ goog.exportProperty( ol.Map.prototype.getView = function() { return /** @type {ol.View} */ (this.get(ol.MapProperty.VIEW)); }; -goog.exportProperty( - ol.Map.prototype, - 'getView', - ol.Map.prototype.getView); /** @@ -1385,10 +1369,6 @@ ol.Map.prototype.renderFrame_ = function(time) { ol.Map.prototype.setLayerGroup = function(layerGroup) { this.set(ol.MapProperty.LAYERGROUP, layerGroup); }; -goog.exportProperty( - ol.Map.prototype, - 'setLayerGroup', - ol.Map.prototype.setLayerGroup); /** @@ -1400,10 +1380,6 @@ goog.exportProperty( ol.Map.prototype.setSize = function(size) { this.set(ol.MapProperty.SIZE, size); }; -goog.exportProperty( - ol.Map.prototype, - 'setSize', - ol.Map.prototype.setSize); /** @@ -1416,10 +1392,6 @@ goog.exportProperty( ol.Map.prototype.setTarget = function(target) { this.set(ol.MapProperty.TARGET, target); }; -goog.exportProperty( - ol.Map.prototype, - 'setTarget', - ol.Map.prototype.setTarget); /** @@ -1431,10 +1403,6 @@ goog.exportProperty( ol.Map.prototype.setView = function(view) { this.set(ol.MapProperty.VIEW, view); }; -goog.exportProperty( - ol.Map.prototype, - 'setView', - ol.Map.prototype.setView); /** diff --git a/src/ol/overlay.js b/src/ol/overlay.js index d9b1ec15b9..edb74392e2 100644 --- a/src/ol/overlay.js +++ b/src/ol/overlay.js @@ -186,10 +186,6 @@ ol.Overlay.prototype.getElement = function() { return /** @type {Element|undefined} */ ( this.get(ol.OverlayProperty.ELEMENT)); }; -goog.exportProperty( - ol.Overlay.prototype, - 'getElement', - ol.Overlay.prototype.getElement); /** @@ -202,10 +198,6 @@ ol.Overlay.prototype.getMap = function() { return /** @type {ol.Map|undefined} */ ( this.get(ol.OverlayProperty.MAP)); }; -goog.exportProperty( - ol.Overlay.prototype, - 'getMap', - ol.Overlay.prototype.getMap); /** @@ -218,10 +210,6 @@ ol.Overlay.prototype.getOffset = function() { return /** @type {Array.} */ ( this.get(ol.OverlayProperty.OFFSET)); }; -goog.exportProperty( - ol.Overlay.prototype, - 'getOffset', - ol.Overlay.prototype.getOffset); /** @@ -235,10 +223,6 @@ ol.Overlay.prototype.getPosition = function() { return /** @type {ol.Coordinate|undefined} */ ( this.get(ol.OverlayProperty.POSITION)); }; -goog.exportProperty( - ol.Overlay.prototype, - 'getPosition', - ol.Overlay.prototype.getPosition); /** @@ -252,10 +236,6 @@ ol.Overlay.prototype.getPositioning = function() { return /** @type {ol.OverlayPositioning} */ ( this.get(ol.OverlayProperty.POSITIONING)); }; -goog.exportProperty( - ol.Overlay.prototype, - 'getPositioning', - ol.Overlay.prototype.getPositioning); /** @@ -340,10 +320,6 @@ ol.Overlay.prototype.handlePositioningChanged = function() { ol.Overlay.prototype.setElement = function(element) { this.set(ol.OverlayProperty.ELEMENT, element); }; -goog.exportProperty( - ol.Overlay.prototype, - 'setElement', - ol.Overlay.prototype.setElement); /** @@ -355,10 +331,6 @@ goog.exportProperty( ol.Overlay.prototype.setMap = function(map) { this.set(ol.OverlayProperty.MAP, map); }; -goog.exportProperty( - ol.Overlay.prototype, - 'setMap', - ol.Overlay.prototype.setMap); /** @@ -370,10 +342,6 @@ goog.exportProperty( ol.Overlay.prototype.setOffset = function(offset) { this.set(ol.OverlayProperty.OFFSET, offset); }; -goog.exportProperty( - ol.Overlay.prototype, - 'setOffset', - ol.Overlay.prototype.setOffset); /** @@ -387,10 +355,6 @@ goog.exportProperty( ol.Overlay.prototype.setPosition = function(position) { this.set(ol.OverlayProperty.POSITION, position); }; -goog.exportProperty( - ol.Overlay.prototype, - 'setPosition', - ol.Overlay.prototype.setPosition); /** @@ -488,10 +452,6 @@ ol.Overlay.prototype.getRect_ = function(element, size) { ol.Overlay.prototype.setPositioning = function(positioning) { this.set(ol.OverlayProperty.POSITIONING, positioning); }; -goog.exportProperty( - ol.Overlay.prototype, - 'setPositioning', - ol.Overlay.prototype.setPositioning); /** diff --git a/src/ol/view.js b/src/ol/view.js index 4f42ac5de9..7a7325bf5c 100644 --- a/src/ol/view.js +++ b/src/ol/view.js @@ -252,10 +252,6 @@ ol.View.prototype.getCenter = function() { return /** @type {ol.Coordinate|undefined} */ ( this.get(ol.ViewProperty.CENTER)); }; -goog.exportProperty( - ol.View.prototype, - 'getCenter', - ol.View.prototype.getCenter); /** @@ -308,10 +304,6 @@ ol.View.prototype.getResolution = function() { return /** @type {number|undefined} */ ( this.get(ol.ViewProperty.RESOLUTION)); }; -goog.exportProperty( - ol.View.prototype, - 'getResolution', - ol.View.prototype.getResolution); /** @@ -364,10 +356,6 @@ ol.View.prototype.getResolutionForValueFunction = function(opt_power) { ol.View.prototype.getRotation = function() { return /** @type {number} */ (this.get(ol.ViewProperty.ROTATION)); }; -goog.exportProperty( - ol.View.prototype, - 'getRotation', - ol.View.prototype.getRotation); /** @@ -596,10 +584,6 @@ ol.View.prototype.rotate = function(rotation, opt_anchor) { ol.View.prototype.setCenter = function(center) { this.set(ol.ViewProperty.CENTER, center); }; -goog.exportProperty( - ol.View.prototype, - 'setCenter', - ol.View.prototype.setCenter); /** @@ -626,10 +610,6 @@ ol.View.prototype.setHint = function(hint, delta) { ol.View.prototype.setResolution = function(resolution) { this.set(ol.ViewProperty.RESOLUTION, resolution); }; -goog.exportProperty( - ol.View.prototype, - 'setResolution', - ol.View.prototype.setResolution); /** @@ -641,10 +621,6 @@ goog.exportProperty( ol.View.prototype.setRotation = function(rotation) { this.set(ol.ViewProperty.ROTATION, rotation); }; -goog.exportProperty( - ol.View.prototype, - 'setRotation', - ol.View.prototype.setRotation); /**