Use let instead of var for exports
This commit is contained in:
committed by
Tim Schaub
parent
0ae5ba2904
commit
c4cf75e470
+111
-110
@@ -2,7 +2,7 @@
|
|||||||
/**
|
/**
|
||||||
* @typedef {{unique: (boolean|undefined)}}
|
* @typedef {{unique: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var CollectionOptions;
|
export let CollectionOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {CollectionOptions} options TODO: repace this
|
* @param {CollectionOptions} options TODO: repace this
|
||||||
@@ -18,7 +18,7 @@ export var CollectionOptions;
|
|||||||
* trackingOptions: (GeolocationPositionOptions|undefined),
|
* trackingOptions: (GeolocationPositionOptions|undefined),
|
||||||
* projection: ol.ProjectionLike}}
|
* projection: ol.ProjectionLike}}
|
||||||
*/
|
*/
|
||||||
export var GeolocationOptions;
|
export let GeolocationOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {GeolocationOptions} options TODO: repace this
|
* @param {GeolocationOptions} options TODO: repace this
|
||||||
@@ -37,7 +37,7 @@ export var GeolocationOptions;
|
|||||||
* Object literal with config options for the map logo.
|
* Object literal with config options for the map logo.
|
||||||
* @typedef {{href: (string), src: (string)}}
|
* @typedef {{href: (string), src: (string)}}
|
||||||
*/
|
*/
|
||||||
export var LogoOptions;
|
export let LogoOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {LogoOptions} options TODO: repace this
|
* @param {LogoOptions} options TODO: repace this
|
||||||
@@ -62,7 +62,7 @@ export var LogoOptions;
|
|||||||
* lonLabelStyle: (ol.style.Text|undefined),
|
* lonLabelStyle: (ol.style.Text|undefined),
|
||||||
* latLabelStyle: (ol.style.Text|undefined)}}
|
* latLabelStyle: (ol.style.Text|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var GraticuleOptions;
|
export let GraticuleOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {GraticuleOptions} options TODO: repace this
|
* @param {GraticuleOptions} options TODO: repace this
|
||||||
@@ -148,7 +148,7 @@ export var GraticuleOptions;
|
|||||||
* Object literal with config options for interactions.
|
* Object literal with config options for interactions.
|
||||||
* @typedef {{handleEvent: function(ol.MapBrowserEvent):boolean}}
|
* @typedef {{handleEvent: function(ol.MapBrowserEvent):boolean}}
|
||||||
*/
|
*/
|
||||||
export var interaction_InteractionOptions;
|
export let interaction_InteractionOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_InteractionOptions} options TODO: repace this
|
* @param {interaction_InteractionOptions} options TODO: repace this
|
||||||
@@ -178,7 +178,7 @@ export var interaction_InteractionOptions;
|
|||||||
* target: (Element|string|undefined),
|
* target: (Element|string|undefined),
|
||||||
* view: (ol.View|undefined)}}
|
* view: (ol.View|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var MapOptions;
|
export let MapOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {MapOptions} options TODO: repace this
|
* @param {MapOptions} options TODO: repace this
|
||||||
@@ -249,7 +249,7 @@ export var MapOptions;
|
|||||||
* @typedef {{projection: (ol.ProjectionLike|undefined),
|
* @typedef {{projection: (ol.ProjectionLike|undefined),
|
||||||
* radius: (number|undefined)}}
|
* radius: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var SphereMetricOptions;
|
export let SphereMetricOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {SphereMetricOptions} options TODO: repace this
|
* @param {SphereMetricOptions} options TODO: repace this
|
||||||
@@ -267,7 +267,7 @@ export var SphereMetricOptions;
|
|||||||
* Options for tile constructors.
|
* Options for tile constructors.
|
||||||
* @typedef {{transition: (number|undefined)}}
|
* @typedef {{transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var TileOptions;
|
export let TileOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {TileOptions} options TODO: repace this
|
* @param {TileOptions} options TODO: repace this
|
||||||
@@ -285,7 +285,7 @@ export var TileOptions;
|
|||||||
* @typedef {{layerFilter: ((function(ol.layer.Layer): boolean)|undefined),
|
* @typedef {{layerFilter: ((function(ol.layer.Layer): boolean)|undefined),
|
||||||
* hitTolerance: (number|undefined)}}
|
* hitTolerance: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var AtPixelOptions;
|
export let AtPixelOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {AtPixelOptions} options TODO: repace this
|
* @param {AtPixelOptions} options TODO: repace this
|
||||||
@@ -316,7 +316,7 @@ export var AtPixelOptions;
|
|||||||
* autoPanMargin: (number|undefined),
|
* autoPanMargin: (number|undefined),
|
||||||
* className: (string|undefined)}}
|
* className: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var OverlayOptions;
|
export let OverlayOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {OverlayOptions} options TODO: repace this
|
* @param {OverlayOptions} options TODO: repace this
|
||||||
@@ -370,7 +370,7 @@ export var OverlayOptions;
|
|||||||
* easing: (undefined|function(number):number)
|
* easing: (undefined|function(number):number)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var OverlayPanOptions;
|
export let OverlayPanOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {OverlayPanOptions} options TODO: repace this
|
* @param {OverlayPanOptions} options TODO: repace this
|
||||||
@@ -394,7 +394,7 @@ export var OverlayPanOptions;
|
|||||||
* worldExtent: (ol.Extent|undefined),
|
* worldExtent: (ol.Extent|undefined),
|
||||||
* getPointResolution: (function(number, ol.Coordinate):number|undefined) }}
|
* getPointResolution: (function(number, ol.Coordinate):number|undefined) }}
|
||||||
*/
|
*/
|
||||||
export var ProjectionOptions;
|
export let ProjectionOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ProjectionOptions} options TODO: repace this
|
* @param {ProjectionOptions} options TODO: repace this
|
||||||
@@ -439,7 +439,7 @@ export var ProjectionOptions;
|
|||||||
* zoom: (number|undefined),
|
* zoom: (number|undefined),
|
||||||
* zoomFactor: (number|undefined)}}
|
* zoomFactor: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var ViewOptions;
|
export let ViewOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ViewOptions} options TODO: repace this
|
* @param {ViewOptions} options TODO: repace this
|
||||||
@@ -518,7 +518,7 @@ export var ViewOptions;
|
|||||||
* easing: (undefined|function(number):number)
|
* easing: (undefined|function(number):number)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var AnimationOptions;
|
export let AnimationOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {AnimationOptions} options TODO: repace this
|
* @param {AnimationOptions} options TODO: repace this
|
||||||
@@ -555,7 +555,7 @@ export var AnimationOptions;
|
|||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* target: (Element|string|undefined)}}
|
* target: (Element|string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_AttributionOptions;
|
export let control_AttributionOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_AttributionOptions} options TODO: repace this
|
* @param {control_AttributionOptions} options TODO: repace this
|
||||||
@@ -591,7 +591,7 @@ export var control_AttributionOptions;
|
|||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* target: (Element|string|undefined)}}
|
* target: (Element|string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_ControlOptions;
|
export let control_ControlOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_ControlOptions} options TODO: repace this
|
* @param {control_ControlOptions} options TODO: repace this
|
||||||
@@ -616,7 +616,7 @@ export var control_ControlOptions;
|
|||||||
* zoom: (boolean|undefined),
|
* zoom: (boolean|undefined),
|
||||||
* zoomOptions: (olx.control.ZoomOptions|undefined)}}
|
* zoomOptions: (olx.control.ZoomOptions|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_DefaultsOptions;
|
export let control_DefaultsOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_DefaultsOptions} options TODO: repace this
|
* @param {control_DefaultsOptions} options TODO: repace this
|
||||||
@@ -645,7 +645,7 @@ export var control_DefaultsOptions;
|
|||||||
* target: (Element|string|undefined),
|
* target: (Element|string|undefined),
|
||||||
* source: (Element|string|undefined)}}
|
* source: (Element|string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_FullScreenOptions;
|
export let control_FullScreenOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_FullScreenOptions} options TODO: repace this
|
* @param {control_FullScreenOptions} options TODO: repace this
|
||||||
@@ -679,7 +679,7 @@ export var control_FullScreenOptions;
|
|||||||
* target: (Element|string|undefined),
|
* target: (Element|string|undefined),
|
||||||
* undefinedHTML: (string|undefined)}}
|
* undefinedHTML: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_MousePositionOptions;
|
export let control_MousePositionOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_MousePositionOptions} options TODO: repace this
|
* @param {control_MousePositionOptions} options TODO: repace this
|
||||||
@@ -712,7 +712,7 @@ export var control_MousePositionOptions;
|
|||||||
* tipLabel: (string|undefined),
|
* tipLabel: (string|undefined),
|
||||||
* view: (ol.View|undefined)}}
|
* view: (ol.View|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_OverviewMapOptions;
|
export let control_OverviewMapOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_OverviewMapOptions} options TODO: repace this
|
* @param {control_OverviewMapOptions} options TODO: repace this
|
||||||
@@ -752,7 +752,7 @@ export var control_OverviewMapOptions;
|
|||||||
* target: (Element|string|undefined),
|
* target: (Element|string|undefined),
|
||||||
* units: (ol.control.ScaleLineUnits|string|undefined)}}
|
* units: (ol.control.ScaleLineUnits|string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_ScaleLineOptions;
|
export let control_ScaleLineOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_ScaleLineOptions} options TODO: repace this
|
* @param {control_ScaleLineOptions} options TODO: repace this
|
||||||
@@ -782,7 +782,7 @@ export var control_ScaleLineOptions;
|
|||||||
* resetNorth: (function()|undefined),
|
* resetNorth: (function()|undefined),
|
||||||
* autoHide: (boolean|undefined)}}
|
* autoHide: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_RotateOptions;
|
export let control_RotateOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_RotateOptions} options TODO: repace this
|
* @param {control_RotateOptions} options TODO: repace this
|
||||||
@@ -820,7 +820,7 @@ export var control_RotateOptions;
|
|||||||
* delta: (number|undefined),
|
* delta: (number|undefined),
|
||||||
* target: (Element|string|undefined)}}
|
* target: (Element|string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_ZoomOptions;
|
export let control_ZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_ZoomOptions} options TODO: repace this
|
* @param {control_ZoomOptions} options TODO: repace this
|
||||||
@@ -854,7 +854,7 @@ export var control_ZoomOptions;
|
|||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* render: (function(ol.MapEvent)|undefined)}}
|
* render: (function(ol.MapEvent)|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_ZoomSliderOptions;
|
export let control_ZoomSliderOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_ZoomSliderOptions} options TODO: repace this
|
* @param {control_ZoomSliderOptions} options TODO: repace this
|
||||||
@@ -880,7 +880,7 @@ export var control_ZoomSliderOptions;
|
|||||||
* tipLabel: (string|undefined),
|
* tipLabel: (string|undefined),
|
||||||
* extent: (ol.Extent|undefined)}}
|
* extent: (ol.Extent|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var control_ZoomToExtentOptions;
|
export let control_ZoomToExtentOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {control_ZoomToExtentOptions} options TODO: repace this
|
* @param {control_ZoomToExtentOptions} options TODO: repace this
|
||||||
@@ -907,7 +907,7 @@ export var control_ZoomToExtentOptions;
|
|||||||
* featureProjection: ol.ProjectionLike,
|
* featureProjection: ol.ProjectionLike,
|
||||||
* rightHanded: (boolean|undefined)}}
|
* rightHanded: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_ReadOptions;
|
export let format_ReadOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_ReadOptions} options TODO: repace this
|
* @param {format_ReadOptions} options TODO: repace this
|
||||||
@@ -933,7 +933,7 @@ export var format_ReadOptions;
|
|||||||
* rightHanded: (boolean|undefined),
|
* rightHanded: (boolean|undefined),
|
||||||
* decimals: (number|undefined)}}
|
* decimals: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_WriteOptions;
|
export let format_WriteOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_WriteOptions} options TODO: repace this
|
* @param {format_WriteOptions} options TODO: repace this
|
||||||
@@ -974,7 +974,7 @@ export var format_WriteOptions;
|
|||||||
* extractGeometryName: (boolean|undefined),
|
* extractGeometryName: (boolean|undefined),
|
||||||
* featureProjection: ol.ProjectionLike}}
|
* featureProjection: ol.ProjectionLike}}
|
||||||
*/
|
*/
|
||||||
export var format_GeoJSONOptions;
|
export let format_GeoJSONOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_GeoJSONOptions} options TODO: repace this
|
* @param {format_GeoJSONOptions} options TODO: repace this
|
||||||
@@ -998,7 +998,7 @@ export var format_GeoJSONOptions;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{geometryName: (string|undefined)}}
|
* @typedef {{geometryName: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_EsriJSONOptions;
|
export let format_EsriJSONOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_EsriJSONOptions} options TODO: repace this
|
* @param {format_EsriJSONOptions} options TODO: repace this
|
||||||
@@ -1017,7 +1017,7 @@ export var format_EsriJSONOptions;
|
|||||||
* layers: (Array.<string>|undefined),
|
* layers: (Array.<string>|undefined),
|
||||||
* layerName: (string|undefined)}}
|
* layerName: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_MVTOptions;
|
export let format_MVTOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_MVTOptions} options TODO: repace this
|
* @param {format_MVTOptions} options TODO: repace this
|
||||||
@@ -1043,7 +1043,7 @@ export var format_MVTOptions;
|
|||||||
* @typedef {{factor: (number|undefined),
|
* @typedef {{factor: (number|undefined),
|
||||||
* geometryLayout: (ol.geom.GeometryLayout|undefined)}}
|
* geometryLayout: (ol.geom.GeometryLayout|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_PolylineOptions;
|
export let format_PolylineOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_PolylineOptions} options TODO: repace this
|
* @param {format_PolylineOptions} options TODO: repace this
|
||||||
@@ -1064,7 +1064,7 @@ export var format_PolylineOptions;
|
|||||||
* layers: (Array.<string>|undefined)
|
* layers: (Array.<string>|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var format_TopoJSONOptions;
|
export let format_TopoJSONOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_TopoJSONOptions} options TODO: repace this
|
* @param {format_TopoJSONOptions} options TODO: repace this
|
||||||
@@ -1097,7 +1097,7 @@ export var format_TopoJSONOptions;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{altitudeMode: (ol.format.IGCZ|undefined)}}
|
* @typedef {{altitudeMode: (ol.format.IGCZ|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_IGCOptions;
|
export let format_IGCOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_IGCOptions} options TODO: repace this
|
* @param {format_IGCOptions} options TODO: repace this
|
||||||
@@ -1114,7 +1114,7 @@ export var format_IGCOptions;
|
|||||||
* showPointNames: (boolean|undefined),
|
* showPointNames: (boolean|undefined),
|
||||||
* writeStyles: (boolean|undefined)}}
|
* writeStyles: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_KMLOptions;
|
export let format_KMLOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_KMLOptions} options TODO: repace this
|
* @param {format_KMLOptions} options TODO: repace this
|
||||||
@@ -1140,7 +1140,7 @@ export var format_KMLOptions;
|
|||||||
* multiSurface: (boolean|undefined),
|
* multiSurface: (boolean|undefined),
|
||||||
* schemaLocation: (string|undefined)}}
|
* schemaLocation: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_GMLOptions;
|
export let format_GMLOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_GMLOptions} options TODO: repace this
|
* @param {format_GMLOptions} options TODO: repace this
|
||||||
@@ -1184,7 +1184,7 @@ export var format_GMLOptions;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{readExtensions: (function(ol.Feature, Node)|undefined)}}
|
* @typedef {{readExtensions: (function(ol.Feature, Node)|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_GPXOptions;
|
export let format_GPXOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_GPXOptions} options TODO: repace this
|
* @param {format_GPXOptions} options TODO: repace this
|
||||||
@@ -1205,7 +1205,7 @@ export var format_GPXOptions;
|
|||||||
* gmlFormat: (ol.format.GMLBase|undefined),
|
* gmlFormat: (ol.format.GMLBase|undefined),
|
||||||
* schemaLocation: (string|undefined)}}
|
* schemaLocation: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_WFSOptions;
|
export let format_WFSOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_WFSOptions} options TODO: repace this
|
* @param {format_WFSOptions} options TODO: repace this
|
||||||
@@ -1238,7 +1238,7 @@ export var format_WFSOptions;
|
|||||||
* filter: (ol.format.filter.Filter|undefined),
|
* filter: (ol.format.filter.Filter|undefined),
|
||||||
* resultType: (string|undefined)}}
|
* resultType: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_WFSWriteGetFeatureOptions;
|
export let format_WFSWriteGetFeatureOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_WFSWriteGetFeatureOptions} options TODO: repace this
|
* @param {format_WFSWriteGetFeatureOptions} options TODO: repace this
|
||||||
@@ -1290,7 +1290,7 @@ export var format_WFSWriteGetFeatureOptions;
|
|||||||
* gmlOptions: (olx.format.GMLOptions|undefined),
|
* gmlOptions: (olx.format.GMLOptions|undefined),
|
||||||
* version: (string|undefined)}}
|
* version: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_WFSWriteTransactionOptions;
|
export let format_WFSWriteTransactionOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_WFSWriteTransactionOptions} options TODO: repace this
|
* @param {format_WFSWriteTransactionOptions} options TODO: repace this
|
||||||
@@ -1322,7 +1322,7 @@ export var format_WFSWriteTransactionOptions;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{splitCollection: (boolean|undefined)}}
|
* @typedef {{splitCollection: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var format_WKTOptions;
|
export let format_WKTOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_WKTOptions} options TODO: repace this
|
* @param {format_WKTOptions} options TODO: repace this
|
||||||
@@ -1338,7 +1338,7 @@ export var format_WKTOptions;
|
|||||||
* layers: (Array.<string>|undefined)
|
* layers: (Array.<string>|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var format_WMSGetFeatureInfoOptions;
|
export let format_WMSGetFeatureInfoOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {format_WMSGetFeatureInfoOptions} options TODO: repace this
|
* @param {format_WMSGetFeatureInfoOptions} options TODO: repace this
|
||||||
@@ -1365,7 +1365,7 @@ export var format_WMSGetFeatureInfoOptions;
|
|||||||
* zoomDuration: (number|undefined)
|
* zoomDuration: (number|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var interaction_DefaultsOptions;
|
export let interaction_DefaultsOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DefaultsOptions} options TODO: repace this
|
* @param {interaction_DefaultsOptions} options TODO: repace this
|
||||||
@@ -1400,7 +1400,7 @@ export var interaction_DefaultsOptions;
|
|||||||
* @typedef {{duration: (number|undefined),
|
* @typedef {{duration: (number|undefined),
|
||||||
* delta: (number|undefined)}}
|
* delta: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DoubleClickZoomOptions;
|
export let interaction_DoubleClickZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DoubleClickZoomOptions} options TODO: repace this
|
* @param {interaction_DoubleClickZoomOptions} options TODO: repace this
|
||||||
@@ -1418,7 +1418,7 @@ export var interaction_DoubleClickZoomOptions;
|
|||||||
* projection: ol.ProjectionLike,
|
* projection: ol.ProjectionLike,
|
||||||
* target: (Element|undefined)}}
|
* target: (Element|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DragAndDropOptions;
|
export let interaction_DragAndDropOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DragAndDropOptions} options TODO: repace this
|
* @param {interaction_DragAndDropOptions} options TODO: repace this
|
||||||
@@ -1444,7 +1444,7 @@ export var interaction_DragAndDropOptions;
|
|||||||
* minArea: (number|undefined),
|
* minArea: (number|undefined),
|
||||||
* boxEndCondition: (ol.DragBoxEndConditionType|undefined)}}
|
* boxEndCondition: (ol.DragBoxEndConditionType|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DragBoxOptions;
|
export let interaction_DragBoxOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DragBoxOptions} options TODO: repace this
|
* @param {interaction_DragBoxOptions} options TODO: repace this
|
||||||
@@ -1469,7 +1469,7 @@ export var interaction_DragBoxOptions;
|
|||||||
* @typedef {{condition: (ol.EventsConditionType|undefined),
|
* @typedef {{condition: (ol.EventsConditionType|undefined),
|
||||||
* kinetic: (ol.Kinetic|undefined)}}
|
* kinetic: (ol.Kinetic|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DragPanOptions;
|
export let interaction_DragPanOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DragPanOptions} options TODO: repace this
|
* @param {interaction_DragPanOptions} options TODO: repace this
|
||||||
@@ -1487,7 +1487,7 @@ export var interaction_DragPanOptions;
|
|||||||
* @typedef {{condition: (ol.EventsConditionType|undefined),
|
* @typedef {{condition: (ol.EventsConditionType|undefined),
|
||||||
* duration: (number|undefined)}}
|
* duration: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DragRotateAndZoomOptions;
|
export let interaction_DragRotateAndZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DragRotateAndZoomOptions} options TODO: repace this
|
* @param {interaction_DragRotateAndZoomOptions} options TODO: repace this
|
||||||
@@ -1505,7 +1505,7 @@ export var interaction_DragRotateAndZoomOptions;
|
|||||||
* @typedef {{condition: (ol.EventsConditionType|undefined),
|
* @typedef {{condition: (ol.EventsConditionType|undefined),
|
||||||
* duration: (number|undefined)}}
|
* duration: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DragRotateOptions;
|
export let interaction_DragRotateOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DragRotateOptions} options TODO: repace this
|
* @param {interaction_DragRotateOptions} options TODO: repace this
|
||||||
@@ -1525,7 +1525,7 @@ export var interaction_DragRotateOptions;
|
|||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* out: (boolean|undefined)}}
|
* out: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DragZoomOptions;
|
export let interaction_DragZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DragZoomOptions} options TODO: repace this
|
* @param {interaction_DragZoomOptions} options TODO: repace this
|
||||||
@@ -1561,7 +1561,7 @@ export var interaction_DragZoomOptions;
|
|||||||
* freehandCondition: (ol.EventsConditionType|undefined),
|
* freehandCondition: (ol.EventsConditionType|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_DrawOptions;
|
export let interaction_DrawOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_DrawOptions} options TODO: repace this
|
* @param {interaction_DrawOptions} options TODO: repace this
|
||||||
@@ -1627,7 +1627,7 @@ export var interaction_DrawOptions;
|
|||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
export var interaction_ExtentOptions;
|
export let interaction_ExtentOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_ExtentOptions} options TODO: repace this
|
* @param {interaction_ExtentOptions} options TODO: repace this
|
||||||
@@ -1656,7 +1656,7 @@ export var interaction_ExtentOptions;
|
|||||||
* hitTolerance: (number|undefined)
|
* hitTolerance: (number|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var interaction_TranslateOptions;
|
export let interaction_TranslateOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_TranslateOptions} options TODO: repace this
|
* @param {interaction_TranslateOptions} options TODO: repace this
|
||||||
@@ -1682,7 +1682,7 @@ export var interaction_TranslateOptions;
|
|||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* pixelDelta: (number|undefined)}}
|
* pixelDelta: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_KeyboardPanOptions;
|
export let interaction_KeyboardPanOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_KeyboardPanOptions} options TODO: repace this
|
* @param {interaction_KeyboardPanOptions} options TODO: repace this
|
||||||
@@ -1704,7 +1704,7 @@ export var interaction_KeyboardPanOptions;
|
|||||||
* condition: (ol.EventsConditionType|undefined),
|
* condition: (ol.EventsConditionType|undefined),
|
||||||
* delta: (number|undefined)}}
|
* delta: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_KeyboardZoomOptions;
|
export let interaction_KeyboardZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_KeyboardZoomOptions} options TODO: repace this
|
* @param {interaction_KeyboardZoomOptions} options TODO: repace this
|
||||||
@@ -1732,7 +1732,7 @@ export var interaction_KeyboardZoomOptions;
|
|||||||
* wrapX: (boolean|undefined)
|
* wrapX: (boolean|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var interaction_ModifyOptions;
|
export let interaction_ModifyOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_ModifyOptions} options TODO: repace this
|
* @param {interaction_ModifyOptions} options TODO: repace this
|
||||||
@@ -1774,7 +1774,7 @@ export var interaction_ModifyOptions;
|
|||||||
* timeout: (number|undefined),
|
* timeout: (number|undefined),
|
||||||
* useAnchor: (boolean|undefined)}}
|
* useAnchor: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_MouseWheelZoomOptions;
|
export let interaction_MouseWheelZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_MouseWheelZoomOptions} options TODO: repace this
|
* @param {interaction_MouseWheelZoomOptions} options TODO: repace this
|
||||||
@@ -1798,7 +1798,7 @@ export var interaction_MouseWheelZoomOptions;
|
|||||||
* @typedef {{threshold: (number|undefined),
|
* @typedef {{threshold: (number|undefined),
|
||||||
* duration: (number|undefined)}}
|
* duration: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_PinchRotateOptions;
|
export let interaction_PinchRotateOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_PinchRotateOptions} options TODO: repace this
|
* @param {interaction_PinchRotateOptions} options TODO: repace this
|
||||||
@@ -1816,7 +1816,7 @@ export var interaction_PinchRotateOptions;
|
|||||||
* constrainResolution: (boolean|undefined)
|
* constrainResolution: (boolean|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var interaction_PinchZoomOptions;
|
export let interaction_PinchZoomOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_PinchZoomOptions} options TODO: repace this
|
* @param {interaction_PinchZoomOptions} options TODO: repace this
|
||||||
@@ -1835,7 +1835,7 @@ export var interaction_PinchZoomOptions;
|
|||||||
* handleMoveEvent: (function(ol.MapBrowserPointerEvent)|undefined),
|
* handleMoveEvent: (function(ol.MapBrowserPointerEvent)|undefined),
|
||||||
* handleUpEvent: (function(ol.MapBrowserPointerEvent):boolean|undefined)}}
|
* handleUpEvent: (function(ol.MapBrowserPointerEvent):boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_PointerOptions;
|
export let interaction_PointerOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_PointerOptions} options TODO: repace this
|
* @param {interaction_PointerOptions} options TODO: repace this
|
||||||
@@ -1874,7 +1874,7 @@ export var interaction_PointerOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* hitTolerance: (number|undefined)}}
|
* hitTolerance: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var interaction_SelectOptions;
|
export let interaction_SelectOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_SelectOptions} options TODO: repace this
|
* @param {interaction_SelectOptions} options TODO: repace this
|
||||||
@@ -1947,7 +1947,7 @@ export var interaction_SelectOptions;
|
|||||||
* vertex: (boolean|undefined)
|
* vertex: (boolean|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var interaction_SnapOptions;
|
export let interaction_SnapOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {interaction_SnapOptions} options TODO: repace this
|
* @param {interaction_SnapOptions} options TODO: repace this
|
||||||
@@ -1974,7 +1974,7 @@ export var interaction_SnapOptions;
|
|||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* maxResolution: (number|undefined)}}
|
* maxResolution: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_BaseOptions;
|
export let layer_BaseOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_BaseOptions} options TODO: repace this
|
* @param {layer_BaseOptions} options TODO: repace this
|
||||||
@@ -2005,7 +2005,7 @@ export var layer_BaseOptions;
|
|||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* maxResolution: (number|undefined)}}
|
* maxResolution: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_LayerOptions;
|
export let layer_LayerOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_LayerOptions} options TODO: repace this
|
* @param {layer_LayerOptions} options TODO: repace this
|
||||||
@@ -2040,7 +2040,7 @@ export var layer_LayerOptions;
|
|||||||
* maxResolution: (number|undefined),
|
* maxResolution: (number|undefined),
|
||||||
* layers: (Array.<ol.layer.Base>|ol.Collection.<ol.layer.Base>|undefined)}}
|
* layers: (Array.<ol.layer.Base>|ol.Collection.<ol.layer.Base>|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_GroupOptions;
|
export let layer_GroupOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_GroupOptions} options TODO: repace this
|
* @param {layer_GroupOptions} options TODO: repace this
|
||||||
@@ -2078,7 +2078,7 @@ export var layer_GroupOptions;
|
|||||||
* visible: (boolean|undefined),
|
* visible: (boolean|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_HeatmapOptions;
|
export let layer_HeatmapOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_HeatmapOptions} options TODO: repace this
|
* @param {layer_HeatmapOptions} options TODO: repace this
|
||||||
@@ -2125,7 +2125,7 @@ export var layer_HeatmapOptions;
|
|||||||
* maxResolution: (number|undefined),
|
* maxResolution: (number|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_ImageOptions;
|
export let layer_ImageOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_ImageOptions} options TODO: repace this
|
* @param {layer_ImageOptions} options TODO: repace this
|
||||||
@@ -2166,7 +2166,7 @@ export var layer_ImageOptions;
|
|||||||
* useInterimTilesOnError: (boolean|undefined),
|
* useInterimTilesOnError: (boolean|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_TileOptions;
|
export let layer_TileOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_TileOptions} options TODO: repace this
|
* @param {layer_TileOptions} options TODO: repace this
|
||||||
@@ -2216,7 +2216,7 @@ export var layer_TileOptions;
|
|||||||
* visible: (boolean|undefined),
|
* visible: (boolean|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_VectorOptions;
|
export let layer_VectorOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_VectorOptions} options TODO: repace this
|
* @param {layer_VectorOptions} options TODO: repace this
|
||||||
@@ -2295,7 +2295,7 @@ export var layer_VectorOptions;
|
|||||||
* visible: (boolean|undefined),
|
* visible: (boolean|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var layer_VectorTileOptions;
|
export let layer_VectorTileOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {layer_VectorTileOptions} options TODO: repace this
|
* @param {layer_VectorTileOptions} options TODO: repace this
|
||||||
@@ -2374,7 +2374,7 @@ export var layer_VectorTileOptions;
|
|||||||
* resolution: number,
|
* resolution: number,
|
||||||
* rotation: number}}
|
* rotation: number}}
|
||||||
*/
|
*/
|
||||||
export var render_State;
|
export let render_State;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {render_State} options TODO: repace this
|
* @param {render_State} options TODO: repace this
|
||||||
@@ -2395,7 +2395,7 @@ export var render_State;
|
|||||||
* @typedef {{size: (ol.Size|undefined),
|
* @typedef {{size: (ol.Size|undefined),
|
||||||
* pixelRatio: (number|undefined)}}
|
* pixelRatio: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var render_ToContextOptions;
|
export let render_ToContextOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {render_ToContextOptions} options TODO: repace this
|
* @param {render_ToContextOptions} options TODO: repace this
|
||||||
@@ -2422,7 +2422,7 @@ export var render_ToContextOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_BingMapsOptions;
|
export let source_BingMapsOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_BingMapsOptions} options TODO: repace this
|
* @param {source_BingMapsOptions} options TODO: repace this
|
||||||
@@ -2469,7 +2469,7 @@ export var source_BingMapsOptions;
|
|||||||
* source: ol.source.Vector,
|
* source: ol.source.Vector,
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_ClusterOptions;
|
export let source_ClusterOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ClusterOptions} options TODO: repace this
|
* @param {source_ClusterOptions} options TODO: repace this
|
||||||
@@ -2512,7 +2512,7 @@ export var source_ClusterOptions;
|
|||||||
* tileJSON: (TileJSON|undefined),
|
* tileJSON: (TileJSON|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_TileUTFGridOptions;
|
export let source_TileUTFGridOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_TileUTFGridOptions} options TODO: repace this
|
* @param {source_TileUTFGridOptions} options TODO: repace this
|
||||||
@@ -2557,7 +2557,7 @@ export var source_TileUTFGridOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_TileImageOptions;
|
export let source_TileImageOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_TileImageOptions} options TODO: repace this
|
* @param {source_TileImageOptions} options TODO: repace this
|
||||||
@@ -2639,7 +2639,7 @@ export var source_TileImageOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_VectorTileOptions;
|
export let source_VectorTileOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_VectorTileOptions} options TODO: repace this
|
* @param {source_VectorTileOptions} options TODO: repace this
|
||||||
@@ -2713,7 +2713,7 @@ export var source_VectorTileOptions;
|
|||||||
* imageLoadFunction: (ol.ImageLoadFunctionType|undefined),
|
* imageLoadFunction: (ol.ImageLoadFunctionType|undefined),
|
||||||
* params: (Object|undefined)}}
|
* params: (Object|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_ImageMapGuideOptions;
|
export let source_ImageMapGuideOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ImageMapGuideOptions} options TODO: repace this
|
* @param {source_ImageMapGuideOptions} options TODO: repace this
|
||||||
@@ -2751,7 +2751,7 @@ export var source_ImageMapGuideOptions;
|
|||||||
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_MapQuestOptions;
|
export let source_MapQuestOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_MapQuestOptions} options TODO: repace this
|
* @param {source_MapQuestOptions} options TODO: repace this
|
||||||
@@ -2780,7 +2780,7 @@ export var source_MapQuestOptions;
|
|||||||
* tileGrid: (ol.tilegrid.TileGrid|undefined),
|
* tileGrid: (ol.tilegrid.TileGrid|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_TileDebugOptions;
|
export let source_TileDebugOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_TileDebugOptions} options TODO: repace this
|
* @param {source_TileDebugOptions} options TODO: repace this
|
||||||
@@ -2805,7 +2805,7 @@ export var source_TileDebugOptions;
|
|||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_OSMOptions;
|
export let source_OSMOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_OSMOptions} options TODO: repace this
|
* @param {source_OSMOptions} options TODO: repace this
|
||||||
@@ -2856,7 +2856,7 @@ export var source_OSMOptions;
|
|||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_ImageArcGISRestOptions;
|
export let source_ImageArcGISRestOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ImageArcGISRestOptions} options TODO: repace this
|
* @param {source_ImageArcGISRestOptions} options TODO: repace this
|
||||||
@@ -2906,7 +2906,7 @@ export var source_ImageArcGISRestOptions;
|
|||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* state: (ol.source.State|undefined)}}
|
* state: (ol.source.State|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_ImageCanvasOptions;
|
export let source_ImageCanvasOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ImageCanvasOptions} options TODO: repace this
|
* @param {source_ImageCanvasOptions} options TODO: repace this
|
||||||
@@ -2946,7 +2946,7 @@ export var source_ImageCanvasOptions;
|
|||||||
* operationType: (ol.source.RasterOperationType|undefined)}}
|
* operationType: (ol.source.RasterOperationType|undefined)}}
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
export var source_RasterOptions;
|
export let source_RasterOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_RasterOptions} options TODO: repace this
|
* @param {source_RasterOptions} options TODO: repace this
|
||||||
@@ -2985,7 +2985,7 @@ export var source_RasterOptions;
|
|||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_ImageWMSOptions;
|
export let source_ImageWMSOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ImageWMSOptions} options TODO: repace this
|
* @param {source_ImageWMSOptions} options TODO: repace this
|
||||||
@@ -3038,7 +3038,7 @@ export var source_ImageWMSOptions;
|
|||||||
* wrapX: (boolean|undefined)
|
* wrapX: (boolean|undefined)
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var source_StamenOptions;
|
export let source_StamenOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_StamenOptions} options TODO: repace this
|
* @param {source_StamenOptions} options TODO: repace this
|
||||||
@@ -3080,7 +3080,7 @@ export var source_StamenOptions;
|
|||||||
* projection: ol.ProjectionLike,
|
* projection: ol.ProjectionLike,
|
||||||
* url: string}}
|
* url: string}}
|
||||||
*/
|
*/
|
||||||
export var source_ImageStaticOptions;
|
export let source_ImageStaticOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ImageStaticOptions} options TODO: repace this
|
* @param {source_ImageStaticOptions} options TODO: repace this
|
||||||
@@ -3125,7 +3125,7 @@ export var source_ImageStaticOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_TileArcGISRestOptions;
|
export let source_TileArcGISRestOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_TileArcGISRestOptions} options TODO: repace this
|
* @param {source_TileArcGISRestOptions} options TODO: repace this
|
||||||
@@ -3194,7 +3194,7 @@ export var source_TileArcGISRestOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_TileJSONOptions;
|
export let source_TileJSONOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_TileJSONOptions} options TODO: repace this
|
* @param {source_TileJSONOptions} options TODO: repace this
|
||||||
@@ -3258,7 +3258,7 @@ export var source_TileJSONOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_TileWMSOptions;
|
export let source_TileWMSOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_TileWMSOptions} options TODO: repace this
|
* @param {source_TileWMSOptions} options TODO: repace this
|
||||||
@@ -3344,7 +3344,7 @@ export var source_TileWMSOptions;
|
|||||||
* useSpatialIndex: (boolean|undefined),
|
* useSpatialIndex: (boolean|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_VectorOptions;
|
export let source_VectorOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_VectorOptions} options TODO: repace this
|
* @param {source_VectorOptions} options TODO: repace this
|
||||||
@@ -3466,7 +3466,7 @@ export var source_VectorOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_WMTSOptions;
|
export let source_WMTSOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_WMTSOptions} options TODO: repace this
|
* @param {source_WMTSOptions} options TODO: repace this
|
||||||
@@ -3556,7 +3556,7 @@ export var source_WMTSOptions;
|
|||||||
* wrapX: (boolean|undefined),
|
* wrapX: (boolean|undefined),
|
||||||
* transition: (number|undefined)}}
|
* transition: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_XYZOptions;
|
export let source_XYZOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_XYZOptions} options TODO: repace this
|
* @param {source_XYZOptions} options TODO: repace this
|
||||||
@@ -3630,7 +3630,7 @@ export var source_XYZOptions;
|
|||||||
* map: (string|undefined),
|
* map: (string|undefined),
|
||||||
* account: string}}
|
* account: string}}
|
||||||
*/
|
*/
|
||||||
export var source_CartoDBOptions;
|
export let source_CartoDBOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_CartoDBOptions} options TODO: repace this
|
* @param {source_CartoDBOptions} options TODO: repace this
|
||||||
@@ -3685,7 +3685,7 @@ export var source_CartoDBOptions;
|
|||||||
* transition: (number|undefined),
|
* transition: (number|undefined),
|
||||||
* tileSize: (number|undefined)}}
|
* tileSize: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var source_ZoomifyOptions;
|
export let source_ZoomifyOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {source_ZoomifyOptions} options TODO: repace this
|
* @param {source_ZoomifyOptions} options TODO: repace this
|
||||||
@@ -3743,7 +3743,7 @@ export var source_ZoomifyOptions;
|
|||||||
* stroke: (ol.style.Stroke|undefined),
|
* stroke: (ol.style.Stroke|undefined),
|
||||||
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_CircleOptions;
|
export let style_CircleOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_CircleOptions} options TODO: repace this
|
* @param {style_CircleOptions} options TODO: repace this
|
||||||
@@ -3773,7 +3773,7 @@ export var style_CircleOptions;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{color: (ol.Color|ol.ColorLike|undefined)}}
|
* @typedef {{color: (ol.Color|ol.ColorLike|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_FillOptions;
|
export let style_FillOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_FillOptions} options TODO: repace this
|
* @param {style_FillOptions} options TODO: repace this
|
||||||
@@ -3804,7 +3804,7 @@ export var style_FillOptions;
|
|||||||
* imgSize: (ol.Size|undefined),
|
* imgSize: (ol.Size|undefined),
|
||||||
* src: (string|undefined)}}
|
* src: (string|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_IconOptions;
|
export let style_IconOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_IconOptions} options TODO: repace this
|
* @param {style_IconOptions} options TODO: repace this
|
||||||
@@ -3883,7 +3883,7 @@ export var style_IconOptions;
|
|||||||
* rotateWithView: (boolean|undefined),
|
* rotateWithView: (boolean|undefined),
|
||||||
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_RegularShapeOptions;
|
export let style_RegularShapeOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_RegularShapeOptions} options TODO: repace this
|
* @param {style_RegularShapeOptions} options TODO: repace this
|
||||||
@@ -3934,7 +3934,7 @@ export var style_RegularShapeOptions;
|
|||||||
* miterLimit: (number|undefined),
|
* miterLimit: (number|undefined),
|
||||||
* width: (number|undefined)}}
|
* width: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_StrokeOptions;
|
export let style_StrokeOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_StrokeOptions} options TODO: repace this
|
* @param {style_StrokeOptions} options TODO: repace this
|
||||||
@@ -3983,7 +3983,7 @@ export var style_StrokeOptions;
|
|||||||
* backgroundStroke: (ol.style.Stroke|undefined),
|
* backgroundStroke: (ol.style.Stroke|undefined),
|
||||||
* padding: (Array.<number>|undefined)}}
|
* padding: (Array.<number>|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_TextOptions;
|
export let style_TextOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_TextOptions} options TODO: repace this
|
* @param {style_TextOptions} options TODO: repace this
|
||||||
@@ -4050,7 +4050,7 @@ export var style_TextOptions;
|
|||||||
* text: (ol.style.Text|undefined),
|
* text: (ol.style.Text|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_StyleOptions;
|
export let style_StyleOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_StyleOptions} options TODO: repace this
|
* @param {style_StyleOptions} options TODO: repace this
|
||||||
@@ -4086,7 +4086,7 @@ export var style_StyleOptions;
|
|||||||
* tileSize: (number|ol.Size|undefined),
|
* tileSize: (number|ol.Size|undefined),
|
||||||
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var tilegrid_TileGridOptions;
|
export let tilegrid_TileGridOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {tilegrid_TileGridOptions} options TODO: repace this
|
* @param {tilegrid_TileGridOptions} options TODO: repace this
|
||||||
@@ -4129,7 +4129,7 @@ export var tilegrid_TileGridOptions;
|
|||||||
* tileSize: (number|ol.Size|undefined),
|
* tileSize: (number|ol.Size|undefined),
|
||||||
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var tilegrid_WMTSOptions;
|
export let tilegrid_WMTSOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {tilegrid_WMTSOptions} options TODO: repace this
|
* @param {tilegrid_WMTSOptions} options TODO: repace this
|
||||||
@@ -4184,7 +4184,7 @@ export var tilegrid_WMTSOptions;
|
|||||||
* minZoom: (number|undefined),
|
* minZoom: (number|undefined),
|
||||||
* tileSize: (number|ol.Size|undefined)}}
|
* tileSize: (number|ol.Size|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var tilegrid_XYZOptions;
|
export let tilegrid_XYZOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {tilegrid_XYZOptions} options TODO: repace this
|
* @param {tilegrid_XYZOptions} options TODO: repace this
|
||||||
@@ -4218,7 +4218,7 @@ export var tilegrid_XYZOptions;
|
|||||||
* callback: (undefined|function(boolean))
|
* callback: (undefined|function(boolean))
|
||||||
* }}
|
* }}
|
||||||
*/
|
*/
|
||||||
export var view_FitOptions;
|
export let view_FitOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {view_FitOptions} options TODO: repace this
|
* @param {view_FitOptions} options TODO: repace this
|
||||||
@@ -4275,7 +4275,7 @@ export var view_FitOptions;
|
|||||||
* viewHints: Array.<number>,
|
* viewHints: Array.<number>,
|
||||||
* wantedTiles: !Object.<string, Object.<string, boolean>>}}
|
* wantedTiles: !Object.<string, Object.<string, boolean>>}}
|
||||||
*/
|
*/
|
||||||
export var FrameState;
|
export let FrameState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {FrameState} options TODO: repace this
|
* @param {FrameState} options TODO: repace this
|
||||||
@@ -4293,7 +4293,7 @@ export var FrameState;
|
|||||||
* rotation: number,
|
* rotation: number,
|
||||||
* zoom: number}}
|
* zoom: number}}
|
||||||
*/
|
*/
|
||||||
export var ViewState;
|
export let ViewState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ViewState} options TODO: repace this
|
* @param {ViewState} options TODO: repace this
|
||||||
@@ -4312,7 +4312,7 @@ export var ViewState;
|
|||||||
* maxSize: (number|undefined),
|
* maxSize: (number|undefined),
|
||||||
* space: (number|undefined)}}
|
* space: (number|undefined)}}
|
||||||
*/
|
*/
|
||||||
export var style_AtlasManagerOptions;
|
export let style_AtlasManagerOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {style_AtlasManagerOptions} options TODO: repace this
|
* @param {style_AtlasManagerOptions} options TODO: repace this
|
||||||
@@ -4331,7 +4331,7 @@ export var style_AtlasManagerOptions;
|
|||||||
* @typedef {{handles: function(ol.renderer.Type):boolean,
|
* @typedef {{handles: function(ol.renderer.Type):boolean,
|
||||||
* create: function(Element, ol.PluggableMap):ol.renderer.Map}}
|
* create: function(Element, ol.PluggableMap):ol.renderer.Map}}
|
||||||
*/
|
*/
|
||||||
export var MapRendererPlugin;
|
export let MapRendererPlugin;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {MapRendererPlugin} options TODO: repace this
|
* @param {MapRendererPlugin} options TODO: repace this
|
||||||
@@ -4347,7 +4347,7 @@ export var MapRendererPlugin;
|
|||||||
* @typedef {{handles: function(ol.renderer.Type, ol.layer.Layer):boolean,
|
* @typedef {{handles: function(ol.renderer.Type, ol.layer.Layer):boolean,
|
||||||
* create: function(ol.renderer.Map, ol.layer.Layer):ol.renderer.Layer}}
|
* create: function(ol.renderer.Map, ol.layer.Layer):ol.renderer.Layer}}
|
||||||
*/
|
*/
|
||||||
export var LayerRendererPlugin;
|
export let LayerRendererPlugin;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {LayerRendererPlugin} options TODO: repace this
|
* @param {LayerRendererPlugin} options TODO: repace this
|
||||||
@@ -4357,3 +4357,4 @@ export var LayerRendererPlugin;
|
|||||||
* @param {function(ol.renderer.Map, ol.layer.Layer):ol.renderer.Layer} options.create Create a layer renderer.
|
* @param {function(ol.renderer.Map, ol.layer.Layer):ol.renderer.Layer} options.create Create a layer renderer.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -158,7 +158,7 @@ function format(data) {
|
|||||||
|
|
||||||
// add the @typedef
|
// add the @typedef
|
||||||
source += `\n/**\n${comment} */\n`;
|
source += `\n/**\n${comment} */\n`;
|
||||||
source += `export var ${name};\n\n`;
|
source += `export let ${name};\n\n`;
|
||||||
|
|
||||||
const params = data[name].params;
|
const params = data[name].params;
|
||||||
if (!params.length) {
|
if (!params.length) {
|
||||||
|
|||||||
Reference in New Issue
Block a user