Remove api annotations from typedefs in olx.js
This commit is contained in:
@@ -105,6 +105,9 @@ exports.handlers = {
|
|||||||
var doclet = e.doclet;
|
var doclet = e.doclet;
|
||||||
// Keep track of api items - needed in parseComplete to determine classes
|
// Keep track of api items - needed in parseComplete to determine classes
|
||||||
// with api members.
|
// with api members.
|
||||||
|
if (doclet.meta.filename == 'olx.js' && doclet.kind == 'typedef') {
|
||||||
|
doclet.undocumented = false;
|
||||||
|
}
|
||||||
if (doclet.stability) {
|
if (doclet.stability) {
|
||||||
api.push(doclet);
|
api.push(doclet);
|
||||||
}
|
}
|
||||||
@@ -145,7 +148,7 @@ exports.handlers = {
|
|||||||
// constructor from the docs.
|
// constructor from the docs.
|
||||||
doclet._hideConstructor = true;
|
doclet._hideConstructor = true;
|
||||||
includeAugments(doclet);
|
includeAugments(doclet);
|
||||||
} else if (!doclet._hideConstructor && !(doclet.kind == 'typedef' && doclet.longname in types)) {
|
} else if (doclet.undocumented !== false && !doclet._hideConstructor && !(doclet.kind == 'typedef' && doclet.longname in types)) {
|
||||||
// Remove all other undocumented symbols
|
// Remove all other undocumented symbols
|
||||||
doclet.undocumented = true;
|
doclet.undocumented = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -89,10 +89,6 @@ exports.handlers = {
|
|||||||
newDoclet: function(e) {
|
newDoclet: function(e) {
|
||||||
var doclet = e.doclet;
|
var doclet = e.doclet;
|
||||||
if (doclet.meta.filename == 'olx.js') {
|
if (doclet.meta.filename == 'olx.js') {
|
||||||
// do nothing if not marked @api
|
|
||||||
if (!doclet.stability) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (doclet.kind == 'typedef') {
|
if (doclet.kind == 'typedef') {
|
||||||
lastOlxTypedef = doclet;
|
lastOlxTypedef = doclet;
|
||||||
olxTypeNames.push(doclet.longname);
|
olxTypeNames.push(doclet.longname);
|
||||||
|
|||||||
-107
@@ -11,7 +11,6 @@ var olx;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{html: string,
|
* @typedef {{html: string,
|
||||||
* tileRanges: (Object.<string, Array.<ol.TileRange>>|undefined)}}
|
* tileRanges: (Object.<string, Array.<ol.TileRange>>|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.AttributionOptions;
|
olx.AttributionOptions;
|
||||||
|
|
||||||
@@ -26,7 +25,6 @@ olx.AttributionOptions.prototype.html;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{tracking: (boolean|undefined)}}
|
* @typedef {{tracking: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.DeviceOrientationOptions;
|
olx.DeviceOrientationOptions;
|
||||||
|
|
||||||
@@ -43,7 +41,6 @@ olx.DeviceOrientationOptions.prototype.tracking;
|
|||||||
* @typedef {{tracking: (boolean|undefined),
|
* @typedef {{tracking: (boolean|undefined),
|
||||||
* trackingOptions: (GeolocationPositionOptions|undefined),
|
* trackingOptions: (GeolocationPositionOptions|undefined),
|
||||||
* projection: ol.proj.ProjectionLike}}
|
* projection: ol.proj.ProjectionLike}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.GeolocationOptions;
|
olx.GeolocationOptions;
|
||||||
|
|
||||||
@@ -76,7 +73,6 @@ olx.GeolocationOptions.prototype.projection;
|
|||||||
/**
|
/**
|
||||||
* 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)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.LogoOptions;
|
olx.LogoOptions;
|
||||||
|
|
||||||
@@ -102,7 +98,6 @@ olx.LogoOptions.prototype.src;
|
|||||||
* maxLines: (number|undefined),
|
* maxLines: (number|undefined),
|
||||||
* strokeStyle: (ol.style.Stroke|undefined),
|
* strokeStyle: (ol.style.Stroke|undefined),
|
||||||
* targetSize: (number|undefined)}}
|
* targetSize: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.GraticuleOptions;
|
olx.GraticuleOptions;
|
||||||
|
|
||||||
@@ -150,7 +145,6 @@ olx.GraticuleOptions.prototype.targetSize;
|
|||||||
/**
|
/**
|
||||||
* 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}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.InteractionOptions;
|
olx.interaction.InteractionOptions;
|
||||||
|
|
||||||
@@ -180,7 +174,6 @@ olx.interaction.InteractionOptions.prototype.handleEvent;
|
|||||||
* renderer: (ol.RendererType|Array.<ol.RendererType|string>|string|undefined),
|
* renderer: (ol.RendererType|Array.<ol.RendererType|string>|string|undefined),
|
||||||
* target: (Element|string|undefined),
|
* target: (Element|string|undefined),
|
||||||
* view: (ol.View|undefined)}}
|
* view: (ol.View|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.MapOptions;
|
olx.MapOptions;
|
||||||
|
|
||||||
@@ -321,7 +314,6 @@ olx.MapOptions.prototype.view;
|
|||||||
* autoPan: (boolean|undefined),
|
* autoPan: (boolean|undefined),
|
||||||
* autoPanAnimation: (olx.animation.PanOptions|undefined),
|
* autoPanAnimation: (olx.animation.PanOptions|undefined),
|
||||||
* autoPanMargin: (number|undefined)}}
|
* autoPanMargin: (number|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.OverlayOptions;
|
olx.OverlayOptions;
|
||||||
|
|
||||||
@@ -434,7 +426,6 @@ olx.OverlayOptions.prototype.autoPanMargin;
|
|||||||
* metersPerUnit: (number|undefined),
|
* metersPerUnit: (number|undefined),
|
||||||
* worldExtent: (ol.Extent|undefined),
|
* worldExtent: (ol.Extent|undefined),
|
||||||
* getPointResolution: (function(number, ol.Coordinate):number|undefined) }}
|
* getPointResolution: (function(number, ol.Coordinate):number|undefined) }}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.ProjectionOptions;
|
olx.ProjectionOptions;
|
||||||
|
|
||||||
@@ -522,7 +513,6 @@ olx.ProjectionOptions.prototype.getPointResolution;
|
|||||||
* rotation: (number|undefined),
|
* rotation: (number|undefined),
|
||||||
* zoom: (number|undefined),
|
* zoom: (number|undefined),
|
||||||
* zoomFactor: (number|undefined)}}
|
* zoomFactor: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.ViewOptions;
|
olx.ViewOptions;
|
||||||
|
|
||||||
@@ -683,7 +673,6 @@ olx.animation;
|
|||||||
* start: (number|undefined),
|
* start: (number|undefined),
|
||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* easing: (function(number):number|undefined)}}
|
* easing: (function(number):number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.animation.BounceOptions;
|
olx.animation.BounceOptions;
|
||||||
|
|
||||||
@@ -727,7 +716,6 @@ olx.animation.BounceOptions.prototype.easing;
|
|||||||
* start: (number|undefined),
|
* start: (number|undefined),
|
||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* easing: (function(number):number|undefined)}}
|
* easing: (function(number):number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.animation.PanOptions;
|
olx.animation.PanOptions;
|
||||||
|
|
||||||
@@ -771,7 +759,6 @@ olx.animation.PanOptions.prototype.easing;
|
|||||||
* start: (number|undefined),
|
* start: (number|undefined),
|
||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* easing: (function(number):number|undefined)}}
|
* easing: (function(number):number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.animation.RotateOptions;
|
olx.animation.RotateOptions;
|
||||||
|
|
||||||
@@ -824,7 +811,6 @@ olx.animation.RotateOptions.prototype.easing;
|
|||||||
* start: (number|undefined),
|
* start: (number|undefined),
|
||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* easing: (function(number):number|undefined)}}
|
* easing: (function(number):number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.animation.ZoomOptions;
|
olx.animation.ZoomOptions;
|
||||||
|
|
||||||
@@ -879,7 +865,6 @@ olx.control;
|
|||||||
* collapseLabel: (string|Node|undefined),
|
* collapseLabel: (string|Node|undefined),
|
||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* target: (Element|undefined)}}
|
* target: (Element|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.control.AttributionOptions;
|
olx.control.AttributionOptions;
|
||||||
|
|
||||||
@@ -958,7 +943,6 @@ olx.control.AttributionOptions.prototype.render;
|
|||||||
* @typedef {{element: (Element|undefined),
|
* @typedef {{element: (Element|undefined),
|
||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* target: (Element|string|undefined)}}
|
* target: (Element|string|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.control.ControlOptions;
|
olx.control.ControlOptions;
|
||||||
|
|
||||||
@@ -997,7 +981,6 @@ olx.control.ControlOptions.prototype.target;
|
|||||||
* rotateOptions: (olx.control.RotateOptions|undefined),
|
* rotateOptions: (olx.control.RotateOptions|undefined),
|
||||||
* zoom: (boolean|undefined),
|
* zoom: (boolean|undefined),
|
||||||
* zoomOptions: (olx.control.ZoomOptions|undefined)}}
|
* zoomOptions: (olx.control.ZoomOptions|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.control.DefaultsOptions;
|
olx.control.DefaultsOptions;
|
||||||
|
|
||||||
@@ -1058,7 +1041,6 @@ olx.control.DefaultsOptions.prototype.zoomOptions;
|
|||||||
* keys: (boolean|undefined),
|
* keys: (boolean|undefined),
|
||||||
* target: (Element|undefined),
|
* target: (Element|undefined),
|
||||||
* source: (Element|string|undefined)}}
|
* source: (Element|string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.control.FullScreenOptions;
|
olx.control.FullScreenOptions;
|
||||||
|
|
||||||
@@ -1127,7 +1109,6 @@ olx.control.FullScreenOptions.prototype.source;
|
|||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* target: (Element|undefined),
|
* target: (Element|undefined),
|
||||||
* undefinedHTML: (string|undefined)}}
|
* undefinedHTML: (string|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.control.MousePositionOptions;
|
olx.control.MousePositionOptions;
|
||||||
|
|
||||||
@@ -1191,7 +1172,6 @@ olx.control.MousePositionOptions.prototype.undefinedHTML;
|
|||||||
* target: (Element|undefined),
|
* target: (Element|undefined),
|
||||||
* tipLabel: (string|undefined),
|
* tipLabel: (string|undefined),
|
||||||
* view: (ol.View|undefined)}}
|
* view: (ol.View|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.control.OverviewMapOptions;
|
olx.control.OverviewMapOptions;
|
||||||
|
|
||||||
@@ -1281,7 +1261,6 @@ olx.control.OverviewMapOptions.prototype.view;
|
|||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* target: (Element|undefined),
|
* target: (Element|undefined),
|
||||||
* units: (ol.control.ScaleLineUnits|string|undefined)}}
|
* units: (ol.control.ScaleLineUnits|string|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.control.ScaleLineOptions;
|
olx.control.ScaleLineOptions;
|
||||||
|
|
||||||
@@ -1336,7 +1315,6 @@ olx.control.ScaleLineOptions.prototype.units;
|
|||||||
* render: (function(ol.MapEvent)|undefined),
|
* render: (function(ol.MapEvent)|undefined),
|
||||||
* resetNorth: (function()|undefined),
|
* resetNorth: (function()|undefined),
|
||||||
* autoHide: (boolean|undefined)}}
|
* autoHide: (boolean|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.control.RotateOptions;
|
olx.control.RotateOptions;
|
||||||
|
|
||||||
@@ -1417,7 +1395,6 @@ olx.control.RotateOptions.prototype.target;
|
|||||||
* zoomOutTipLabel: (string|undefined),
|
* zoomOutTipLabel: (string|undefined),
|
||||||
* delta: (number|undefined),
|
* delta: (number|undefined),
|
||||||
* target: (Element|undefined)}}
|
* target: (Element|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.control.ZoomOptions;
|
olx.control.ZoomOptions;
|
||||||
|
|
||||||
@@ -1494,7 +1471,6 @@ olx.control.ZoomOptions.prototype.target;
|
|||||||
* maxResolution: (number|undefined),
|
* maxResolution: (number|undefined),
|
||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* render: (function(ol.MapEvent)|undefined)}}
|
* render: (function(ol.MapEvent)|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.control.ZoomSliderOptions;
|
olx.control.ZoomSliderOptions;
|
||||||
|
|
||||||
@@ -1546,7 +1522,6 @@ olx.control.ZoomSliderOptions.prototype.render;
|
|||||||
* label: (string|Node|undefined),
|
* label: (string|Node|undefined),
|
||||||
* tipLabel: (string|undefined),
|
* tipLabel: (string|undefined),
|
||||||
* extent: (ol.Extent|undefined)}}
|
* extent: (ol.Extent|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.control.ZoomToExtentOptions;
|
olx.control.ZoomToExtentOptions;
|
||||||
|
|
||||||
@@ -1604,7 +1579,6 @@ olx.format;
|
|||||||
* @typedef {{dataProjection: ol.proj.ProjectionLike,
|
* @typedef {{dataProjection: ol.proj.ProjectionLike,
|
||||||
* featureProjection: ol.proj.ProjectionLike,
|
* featureProjection: ol.proj.ProjectionLike,
|
||||||
* rightHanded: (boolean|undefined)}}
|
* rightHanded: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.ReadOptions;
|
olx.format.ReadOptions;
|
||||||
|
|
||||||
@@ -1635,7 +1609,6 @@ olx.format.ReadOptions.prototype.featureProjection;
|
|||||||
* featureProjection: ol.proj.ProjectionLike,
|
* featureProjection: ol.proj.ProjectionLike,
|
||||||
* rightHanded: (boolean|undefined),
|
* rightHanded: (boolean|undefined),
|
||||||
* decimals: (number|undefined)}}
|
* decimals: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.WriteOptions;
|
olx.format.WriteOptions;
|
||||||
|
|
||||||
@@ -1694,7 +1667,6 @@ olx.format.WriteOptions.prototype.decimals;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{defaultDataProjection: ol.proj.ProjectionLike,
|
* @typedef {{defaultDataProjection: ol.proj.ProjectionLike,
|
||||||
* geometryName: (string|undefined)}}
|
* geometryName: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.GeoJSONOptions;
|
olx.format.GeoJSONOptions;
|
||||||
|
|
||||||
@@ -1717,7 +1689,6 @@ olx.format.GeoJSONOptions.prototype.geometryName;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{geometryName: (string|undefined)}}
|
* @typedef {{geometryName: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.EsriJSONOptions;
|
olx.format.EsriJSONOptions;
|
||||||
|
|
||||||
@@ -1738,7 +1709,6 @@ olx.format.EsriJSONOptions.prototype.geometryName;
|
|||||||
* geometryName: (string|undefined),
|
* geometryName: (string|undefined),
|
||||||
* layers: (Array.<string>|undefined),
|
* layers: (Array.<string>|undefined),
|
||||||
* layerName: (string|undefined)}}
|
* layerName: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.MVTOptions;
|
olx.format.MVTOptions;
|
||||||
|
|
||||||
@@ -1784,7 +1754,6 @@ olx.format.MVTOptions.prototype.layers;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{factor: (number|undefined),
|
* @typedef {{factor: (number|undefined),
|
||||||
* geometryLayout: (ol.geom.GeometryLayout|undefined)}}
|
* geometryLayout: (ol.geom.GeometryLayout|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.PolylineOptions;
|
olx.format.PolylineOptions;
|
||||||
|
|
||||||
@@ -1809,7 +1778,6 @@ olx.format.PolylineOptions.prototype.geometryLayout;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{defaultDataProjection: ol.proj.ProjectionLike}}
|
* @typedef {{defaultDataProjection: ol.proj.ProjectionLike}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.TopoJSONOptions;
|
olx.format.TopoJSONOptions;
|
||||||
|
|
||||||
@@ -1824,7 +1792,6 @@ olx.format.TopoJSONOptions.prototype.defaultDataProjection;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{altitudeMode: (ol.format.IGCZ|undefined)}}
|
* @typedef {{altitudeMode: (ol.format.IGCZ|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.IGCOptions;
|
olx.format.IGCOptions;
|
||||||
|
|
||||||
@@ -1843,7 +1810,6 @@ olx.format.IGCOptions.prototype.altitudeMode;
|
|||||||
* defaultStyle: (Array.<ol.style.Style>|undefined),
|
* defaultStyle: (Array.<ol.style.Style>|undefined),
|
||||||
* showPointNames: (boolean|undefined),
|
* showPointNames: (boolean|undefined),
|
||||||
* writeStyles: (boolean|undefined)}}
|
* writeStyles: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.KMLOptions;
|
olx.format.KMLOptions;
|
||||||
|
|
||||||
@@ -1889,7 +1855,6 @@ olx.format.KMLOptions.prototype.writeStyles;
|
|||||||
* multiCurve: (boolean|undefined),
|
* multiCurve: (boolean|undefined),
|
||||||
* multiSurface: (boolean|undefined),
|
* multiSurface: (boolean|undefined),
|
||||||
* schemaLocation: (string|undefined)}}
|
* schemaLocation: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.GMLOptions;
|
olx.format.GMLOptions;
|
||||||
|
|
||||||
@@ -1977,7 +1942,6 @@ olx.format.GMLOptions.prototype.schemaLocation;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{readExtensions: (function(ol.Feature, Node)|undefined)}}
|
* @typedef {{readExtensions: (function(ol.Feature, Node)|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.GPXOptions;
|
olx.format.GPXOptions;
|
||||||
|
|
||||||
@@ -2000,7 +1964,6 @@ olx.format.GPXOptions.prototype.readExtensions;
|
|||||||
* featureType: (Array.<string>|string|undefined),
|
* featureType: (Array.<string>|string|undefined),
|
||||||
* gmlFormat: (ol.format.GMLBase|undefined),
|
* gmlFormat: (ol.format.GMLBase|undefined),
|
||||||
* schemaLocation: (string|undefined)}}
|
* schemaLocation: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.WFSOptions;
|
olx.format.WFSOptions;
|
||||||
|
|
||||||
@@ -2052,7 +2015,6 @@ olx.format.WFSOptions.prototype.schemaLocation;
|
|||||||
* count: (number|undefined),
|
* count: (number|undefined),
|
||||||
* bbox: (ol.Extent|undefined),
|
* bbox: (ol.Extent|undefined),
|
||||||
* filter: (ol.format.ogc.filter.Filter|undefined)}}
|
* filter: (ol.format.ogc.filter.Filter|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.WFSWriteGetFeatureOptions;
|
olx.format.WFSWriteGetFeatureOptions;
|
||||||
|
|
||||||
@@ -2173,7 +2135,6 @@ olx.format.WFSWriteGetFeatureOptions.prototype.filter;
|
|||||||
* handle: (string|undefined),
|
* handle: (string|undefined),
|
||||||
* nativeElements: Array.<Object>,
|
* nativeElements: Array.<Object>,
|
||||||
* gmlOptions: (olx.format.GMLOptions|undefined)}}
|
* gmlOptions: (olx.format.GMLOptions|undefined)}}
|
||||||
* @api stable
|
|
||||||
*/
|
*/
|
||||||
olx.format.WFSWriteTransactionOptions;
|
olx.format.WFSWriteTransactionOptions;
|
||||||
|
|
||||||
@@ -2237,7 +2198,6 @@ olx.format.WFSWriteTransactionOptions.prototype.gmlOptions;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{splitCollection: (boolean|undefined)}}
|
* @typedef {{splitCollection: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.WKTOptions;
|
olx.format.WKTOptions;
|
||||||
|
|
||||||
@@ -2255,7 +2215,6 @@ olx.format.WKTOptions.prototype.splitCollection;
|
|||||||
* @typedef {{
|
* @typedef {{
|
||||||
* layers: (Array.<string>|undefined)
|
* layers: (Array.<string>|undefined)
|
||||||
* }}
|
* }}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.format.WMSGetFeatureInfoOptions;
|
olx.format.WMSGetFeatureInfoOptions;
|
||||||
|
|
||||||
@@ -2288,7 +2247,6 @@ olx.interaction;
|
|||||||
* pinchZoom: (boolean|undefined),
|
* pinchZoom: (boolean|undefined),
|
||||||
* zoomDelta: (number|undefined),
|
* zoomDelta: (number|undefined),
|
||||||
* zoomDuration: (number|undefined)}}
|
* zoomDuration: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DefaultsOptions;
|
olx.interaction.DefaultsOptions;
|
||||||
|
|
||||||
@@ -2376,7 +2334,6 @@ olx.interaction.DefaultsOptions.prototype.zoomDuration;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{duration: (number|undefined),
|
* @typedef {{duration: (number|undefined),
|
||||||
* delta: (number|undefined)}}
|
* delta: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DoubleClickZoomOptions;
|
olx.interaction.DoubleClickZoomOptions;
|
||||||
|
|
||||||
@@ -2401,7 +2358,6 @@ olx.interaction.DoubleClickZoomOptions.prototype.delta;
|
|||||||
* @typedef {{formatConstructors: (Array.<function(new: ol.format.Feature)>|undefined),
|
* @typedef {{formatConstructors: (Array.<function(new: ol.format.Feature)>|undefined),
|
||||||
* projection: ol.proj.ProjectionLike,
|
* projection: ol.proj.ProjectionLike,
|
||||||
* target: (Element|undefined)}}
|
* target: (Element|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DragAndDropOptions;
|
olx.interaction.DragAndDropOptions;
|
||||||
|
|
||||||
@@ -2434,7 +2390,6 @@ olx.interaction.DragAndDropOptions.prototype.target;
|
|||||||
* @typedef {{className: (string|undefined),
|
* @typedef {{className: (string|undefined),
|
||||||
* condition: (ol.events.ConditionType|undefined),
|
* condition: (ol.events.ConditionType|undefined),
|
||||||
* boxEndCondition: (ol.interaction.DragBoxEndConditionType|undefined)}}
|
* boxEndCondition: (ol.interaction.DragBoxEndConditionType|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DragBoxOptions;
|
olx.interaction.DragBoxOptions;
|
||||||
|
|
||||||
@@ -2478,7 +2433,6 @@ olx.interaction.DragBoxOptions.prototype.boxEndCondition;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{kinetic: (ol.Kinetic|undefined)}}
|
* @typedef {{kinetic: (ol.Kinetic|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DragPanOptions;
|
olx.interaction.DragPanOptions;
|
||||||
|
|
||||||
@@ -2494,7 +2448,6 @@ olx.interaction.DragPanOptions.prototype.kinetic;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{condition: (ol.events.ConditionType|undefined),
|
* @typedef {{condition: (ol.events.ConditionType|undefined),
|
||||||
* duration: (number|undefined)}}
|
* duration: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DragRotateAndZoomOptions;
|
olx.interaction.DragRotateAndZoomOptions;
|
||||||
|
|
||||||
@@ -2520,7 +2473,6 @@ olx.interaction.DragRotateAndZoomOptions.prototype.duration;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{condition: (ol.events.ConditionType|undefined),
|
* @typedef {{condition: (ol.events.ConditionType|undefined),
|
||||||
* duration: (number|undefined)}}
|
* duration: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DragRotateOptions;
|
olx.interaction.DragRotateOptions;
|
||||||
|
|
||||||
@@ -2548,7 +2500,6 @@ olx.interaction.DragRotateOptions.prototype.duration;
|
|||||||
* condition: (ol.events.ConditionType|undefined),
|
* condition: (ol.events.ConditionType|undefined),
|
||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* out: (boolean|undefined)}}
|
* out: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DragZoomOptions;
|
olx.interaction.DragZoomOptions;
|
||||||
|
|
||||||
@@ -2602,7 +2553,6 @@ olx.interaction.DragZoomOptions.prototype.out;
|
|||||||
* condition: (ol.events.ConditionType|undefined),
|
* condition: (ol.events.ConditionType|undefined),
|
||||||
* freehandCondition: (ol.events.ConditionType|undefined),
|
* freehandCondition: (ol.events.ConditionType|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.DrawOptions;
|
olx.interaction.DrawOptions;
|
||||||
|
|
||||||
@@ -2739,7 +2689,6 @@ olx.interaction.DrawOptions.prototype.wrapX;
|
|||||||
* features: (ol.Collection.<ol.Feature>|undefined),
|
* features: (ol.Collection.<ol.Feature>|undefined),
|
||||||
* layers: (undefined|Array.<ol.layer.Layer>|function(ol.layer.Layer): boolean)
|
* layers: (undefined|Array.<ol.layer.Layer>|function(ol.layer.Layer): boolean)
|
||||||
* }}
|
* }}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.TranslateOptions;
|
olx.interaction.TranslateOptions;
|
||||||
|
|
||||||
@@ -2769,7 +2718,6 @@ olx.interaction.TranslateOptions.prototype.layers;
|
|||||||
* @typedef {{condition: (ol.events.ConditionType|undefined),
|
* @typedef {{condition: (ol.events.ConditionType|undefined),
|
||||||
* duration: (number|undefined),
|
* duration: (number|undefined),
|
||||||
* pixelDelta: (number|undefined)}}
|
* pixelDelta: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.KeyboardPanOptions;
|
olx.interaction.KeyboardPanOptions;
|
||||||
|
|
||||||
@@ -2805,7 +2753,6 @@ olx.interaction.KeyboardPanOptions.prototype.pixelDelta;
|
|||||||
* @typedef {{duration: (number|undefined),
|
* @typedef {{duration: (number|undefined),
|
||||||
* condition: (ol.events.ConditionType|undefined),
|
* condition: (ol.events.ConditionType|undefined),
|
||||||
* delta: (number|undefined)}}
|
* delta: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.KeyboardZoomOptions;
|
olx.interaction.KeyboardZoomOptions;
|
||||||
|
|
||||||
@@ -2843,7 +2790,6 @@ olx.interaction.KeyboardZoomOptions.prototype.delta;
|
|||||||
* style: (ol.style.Style|Array.<ol.style.Style>|ol.style.StyleFunction|undefined),
|
* style: (ol.style.Style|Array.<ol.style.Style>|ol.style.StyleFunction|undefined),
|
||||||
* features: ol.Collection.<ol.Feature>,
|
* features: ol.Collection.<ol.Feature>,
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.ModifyOptions;
|
olx.interaction.ModifyOptions;
|
||||||
|
|
||||||
@@ -2907,7 +2853,6 @@ olx.interaction.ModifyOptions.prototype.wrapX;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{duration: (number|undefined),
|
* @typedef {{duration: (number|undefined),
|
||||||
* useAnchor: (boolean|undefined)}}
|
* useAnchor: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.MouseWheelZoomOptions;
|
olx.interaction.MouseWheelZoomOptions;
|
||||||
|
|
||||||
@@ -2933,7 +2878,6 @@ olx.interaction.MouseWheelZoomOptions.prototype.useAnchor;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{threshold: (number|undefined),
|
* @typedef {{threshold: (number|undefined),
|
||||||
* duration: (number|undefined)}}
|
* duration: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.PinchRotateOptions;
|
olx.interaction.PinchRotateOptions;
|
||||||
|
|
||||||
@@ -2956,7 +2900,6 @@ olx.interaction.PinchRotateOptions.prototype.threshold;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{duration: (number|undefined)}}
|
* @typedef {{duration: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.PinchZoomOptions;
|
olx.interaction.PinchZoomOptions;
|
||||||
|
|
||||||
@@ -2975,7 +2918,6 @@ olx.interaction.PinchZoomOptions.prototype.duration;
|
|||||||
* handleEvent: (function(ol.MapBrowserEvent):boolean|undefined),
|
* handleEvent: (function(ol.MapBrowserEvent):boolean|undefined),
|
||||||
* handleMoveEvent: (function(ol.MapBrowserPointerEvent)|undefined),
|
* handleMoveEvent: (function(ol.MapBrowserPointerEvent)|undefined),
|
||||||
* handleUpEvent: (function(ol.MapBrowserPointerEvent):boolean|undefined)}}
|
* handleUpEvent: (function(ol.MapBrowserPointerEvent):boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.PointerOptions;
|
olx.interaction.PointerOptions;
|
||||||
|
|
||||||
@@ -3039,7 +2981,6 @@ olx.interaction.PointerOptions.prototype.handleUpEvent;
|
|||||||
* features: (ol.Collection.<ol.Feature>|undefined),
|
* features: (ol.Collection.<ol.Feature>|undefined),
|
||||||
* filter: (ol.interaction.SelectFilterFunction|undefined),
|
* filter: (ol.interaction.SelectFilterFunction|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.SelectOptions;
|
olx.interaction.SelectOptions;
|
||||||
|
|
||||||
@@ -3162,7 +3103,6 @@ olx.interaction.SelectOptions.prototype.wrapX;
|
|||||||
* edge: (boolean|undefined),
|
* edge: (boolean|undefined),
|
||||||
* vertex: (boolean|undefined)
|
* vertex: (boolean|undefined)
|
||||||
* }}
|
* }}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.interaction.SnapOptions;
|
olx.interaction.SnapOptions;
|
||||||
|
|
||||||
@@ -3221,7 +3161,6 @@ olx.layer;
|
|||||||
* zIndex: (number|undefined),
|
* zIndex: (number|undefined),
|
||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* maxResolution: (number|undefined)}}
|
* maxResolution: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.BaseOptions;
|
olx.layer.BaseOptions;
|
||||||
|
|
||||||
@@ -3284,7 +3223,6 @@ olx.layer.BaseOptions.prototype.maxResolution;
|
|||||||
* zIndex: (number|undefined),
|
* zIndex: (number|undefined),
|
||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* maxResolution: (number|undefined)}}
|
* maxResolution: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.LayerOptions;
|
olx.layer.LayerOptions;
|
||||||
|
|
||||||
@@ -3357,7 +3295,6 @@ olx.layer.LayerOptions.prototype.maxResolution;
|
|||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* 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)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.GroupOptions;
|
olx.layer.GroupOptions;
|
||||||
|
|
||||||
@@ -3432,7 +3369,6 @@ olx.layer.GroupOptions.prototype.layers;
|
|||||||
* opacity: (number|undefined),
|
* opacity: (number|undefined),
|
||||||
* source: (ol.source.Vector|undefined),
|
* source: (ol.source.Vector|undefined),
|
||||||
* visible: (boolean|undefined)}}
|
* visible: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.HeatmapOptions;
|
olx.layer.HeatmapOptions;
|
||||||
|
|
||||||
@@ -3537,7 +3473,6 @@ olx.layer.HeatmapOptions.prototype.visible;
|
|||||||
* extent: (ol.Extent|undefined),
|
* extent: (ol.Extent|undefined),
|
||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* maxResolution: (number|undefined)}}
|
* maxResolution: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.ImageOptions;
|
olx.layer.ImageOptions;
|
||||||
|
|
||||||
@@ -3612,7 +3547,6 @@ olx.layer.ImageOptions.prototype.maxResolution;
|
|||||||
* minResolution: (number|undefined),
|
* minResolution: (number|undefined),
|
||||||
* maxResolution: (number|undefined),
|
* maxResolution: (number|undefined),
|
||||||
* useInterimTilesOnError: (boolean|undefined)}}
|
* useInterimTilesOnError: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.TileOptions;
|
olx.layer.TileOptions;
|
||||||
|
|
||||||
@@ -3706,7 +3640,6 @@ olx.layer.TileOptions.prototype.useInterimTilesOnError;
|
|||||||
* updateWhileAnimating: (boolean|undefined),
|
* updateWhileAnimating: (boolean|undefined),
|
||||||
* updateWhileInteracting: (boolean|undefined),
|
* updateWhileInteracting: (boolean|undefined),
|
||||||
* visible: (boolean|undefined)}}
|
* visible: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.VectorOptions;
|
olx.layer.VectorOptions;
|
||||||
|
|
||||||
@@ -3835,7 +3768,6 @@ olx.layer.VectorOptions.prototype.visible;
|
|||||||
* updateWhileAnimating: (boolean|undefined),
|
* updateWhileAnimating: (boolean|undefined),
|
||||||
* updateWhileInteracting: (boolean|undefined),
|
* updateWhileInteracting: (boolean|undefined),
|
||||||
* visible: (boolean|undefined)}}
|
* visible: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.layer.VectorTileOptions;
|
olx.layer.VectorTileOptions;
|
||||||
|
|
||||||
@@ -3977,7 +3909,6 @@ olx.render;
|
|||||||
/**
|
/**
|
||||||
* @typedef {{size: (ol.Size|undefined),
|
* @typedef {{size: (ol.Size|undefined),
|
||||||
* pixelRatio: (number|undefined)}}
|
* pixelRatio: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.render.ToContextOptions;
|
olx.render.ToContextOptions;
|
||||||
|
|
||||||
@@ -4017,7 +3948,6 @@ olx.source;
|
|||||||
* reprojectionErrorThreshold: (number|undefined),
|
* reprojectionErrorThreshold: (number|undefined),
|
||||||
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.BingMapsOptions;
|
olx.source.BingMapsOptions;
|
||||||
|
|
||||||
@@ -4103,7 +4033,6 @@ olx.source.BingMapsOptions.prototype.wrapX;
|
|||||||
* projection: ol.proj.ProjectionLike,
|
* projection: ol.proj.ProjectionLike,
|
||||||
* source: ol.source.Vector,
|
* source: ol.source.Vector,
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ClusterOptions;
|
olx.source.ClusterOptions;
|
||||||
|
|
||||||
@@ -4196,7 +4125,6 @@ olx.source.ClusterOptions.prototype.wrapX;
|
|||||||
* jsonp: (boolean|undefined),
|
* jsonp: (boolean|undefined),
|
||||||
* tileJSON: (TileJSON|undefined),
|
* tileJSON: (TileJSON|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.TileUTFGridOptions;
|
olx.source.TileUTFGridOptions;
|
||||||
|
|
||||||
@@ -4260,7 +4188,6 @@ olx.source.TileUTFGridOptions.prototype.url;
|
|||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* urls: (Array.<string>|undefined),
|
* urls: (Array.<string>|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.TileImageOptions;
|
olx.source.TileImageOptions;
|
||||||
|
|
||||||
@@ -4430,7 +4357,6 @@ olx.source.TileImageOptions.prototype.wrapX;
|
|||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* urls: (Array.<string>|undefined),
|
* urls: (Array.<string>|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.VectorTileOptions;
|
olx.source.VectorTileOptions;
|
||||||
|
|
||||||
@@ -4578,7 +4504,6 @@ olx.source.VectorTileOptions.prototype.wrapX;
|
|||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* imageLoadFunction: (ol.ImageLoadFunctionType|undefined),
|
* imageLoadFunction: (ol.ImageLoadFunctionType|undefined),
|
||||||
* params: (Object|undefined)}}
|
* params: (Object|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ImageMapGuideOptions;
|
olx.source.ImageMapGuideOptions;
|
||||||
|
|
||||||
@@ -4672,7 +4597,6 @@ olx.source.ImageMapGuideOptions.prototype.params;
|
|||||||
* reprojectionErrorThreshold: (number|undefined),
|
* reprojectionErrorThreshold: (number|undefined),
|
||||||
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.MapQuestOptions;
|
olx.source.MapQuestOptions;
|
||||||
|
|
||||||
@@ -4727,7 +4651,6 @@ olx.source.MapQuestOptions.prototype.url;
|
|||||||
* @typedef {{projection: ol.proj.ProjectionLike,
|
* @typedef {{projection: ol.proj.ProjectionLike,
|
||||||
* tileGrid: (ol.tilegrid.TileGrid|undefined),
|
* tileGrid: (ol.tilegrid.TileGrid|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.TileDebugOptions;
|
olx.source.TileDebugOptions;
|
||||||
|
|
||||||
@@ -4766,7 +4689,6 @@ olx.source.TileDebugOptions.prototype.wrapX;
|
|||||||
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.OSMOptions;
|
olx.source.OSMOptions;
|
||||||
|
|
||||||
@@ -4866,7 +4788,6 @@ olx.source.OSMOptions.prototype.wrapX;
|
|||||||
* ratio: (number|undefined),
|
* ratio: (number|undefined),
|
||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ImageArcGISRestOptions;
|
olx.source.ImageArcGISRestOptions;
|
||||||
|
|
||||||
@@ -4963,7 +4884,6 @@ olx.source.ImageArcGISRestOptions.prototype.url;
|
|||||||
* ratio: (number|undefined),
|
* ratio: (number|undefined),
|
||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* state: (ol.source.State|undefined)}}
|
* state: (ol.source.State|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ImageCanvasOptions;
|
olx.source.ImageCanvasOptions;
|
||||||
|
|
||||||
@@ -5042,7 +4962,6 @@ olx.source.ImageCanvasOptions.prototype.state;
|
|||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* source: ol.source.Vector,
|
* source: ol.source.Vector,
|
||||||
* style: (ol.style.Style|Array.<ol.style.Style>|ol.style.StyleFunction|undefined)}}
|
* style: (ol.style.Style|Array.<ol.style.Style>|ol.style.StyleFunction|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ImageVectorOptions;
|
olx.source.ImageVectorOptions;
|
||||||
|
|
||||||
@@ -5113,7 +5032,6 @@ olx.source.ImageVectorOptions.prototype.style;
|
|||||||
* lib: (Object|undefined),
|
* lib: (Object|undefined),
|
||||||
* threads: (number|undefined),
|
* threads: (number|undefined),
|
||||||
* operationType: (ol.raster.OperationType|undefined)}}
|
* operationType: (ol.raster.OperationType|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.RasterOptions;
|
olx.source.RasterOptions;
|
||||||
|
|
||||||
@@ -5178,7 +5096,6 @@ olx.source.RasterOptions.prototype.operationType;
|
|||||||
* ratio: (number|undefined),
|
* ratio: (number|undefined),
|
||||||
* resolutions: (Array.<number>|undefined),
|
* resolutions: (Array.<number>|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ImageWMSOptions;
|
olx.source.ImageWMSOptions;
|
||||||
|
|
||||||
@@ -5290,7 +5207,6 @@ olx.source.ImageWMSOptions.prototype.url;
|
|||||||
* reprojectionErrorThreshold: (number|undefined),
|
* reprojectionErrorThreshold: (number|undefined),
|
||||||
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
||||||
* url: (string|undefined)}}
|
* url: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.StamenOptions;
|
olx.source.StamenOptions;
|
||||||
|
|
||||||
@@ -5373,7 +5289,6 @@ olx.source.StamenOptions.prototype.url;
|
|||||||
* logo: (string|olx.LogoOptions|undefined),
|
* logo: (string|olx.LogoOptions|undefined),
|
||||||
* projection: ol.proj.ProjectionLike,
|
* projection: ol.proj.ProjectionLike,
|
||||||
* url: string}}
|
* url: string}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ImageStaticOptions;
|
olx.source.ImageStaticOptions;
|
||||||
|
|
||||||
@@ -5461,7 +5376,6 @@ olx.source.ImageStaticOptions.prototype.url;
|
|||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* urls: (Array.<string>|undefined),
|
* urls: (Array.<string>|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.TileArcGISRestOptions;
|
olx.source.TileArcGISRestOptions;
|
||||||
|
|
||||||
@@ -5593,7 +5507,6 @@ olx.source.TileArcGISRestOptions.prototype.urls;
|
|||||||
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
* tileLoadFunction: (ol.TileLoadFunctionType|undefined),
|
||||||
* url: string,
|
* url: string,
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.TileJSONOptions;
|
olx.source.TileJSONOptions;
|
||||||
|
|
||||||
@@ -5692,7 +5605,6 @@ olx.source.TileJSONOptions.prototype.wrapX;
|
|||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* urls: (Array.<string>|undefined),
|
* urls: (Array.<string>|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.TileWMSOptions;
|
olx.source.TileWMSOptions;
|
||||||
|
|
||||||
@@ -5864,7 +5776,6 @@ olx.source.TileWMSOptions.prototype.wrapX;
|
|||||||
* url: (string|ol.FeatureUrlFunction|undefined),
|
* url: (string|ol.FeatureUrlFunction|undefined),
|
||||||
* useSpatialIndex: (boolean|undefined),
|
* useSpatialIndex: (boolean|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.VectorOptions;
|
olx.source.VectorOptions;
|
||||||
|
|
||||||
@@ -5998,7 +5909,6 @@ olx.source.VectorOptions.prototype.wrapX;
|
|||||||
* ol.TileState, string, ?string,
|
* ol.TileState, string, ?string,
|
||||||
* ol.TileLoadFunctionType)|undefined),
|
* ol.TileLoadFunctionType)|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.WMTSOptions;
|
olx.source.WMTSOptions;
|
||||||
|
|
||||||
@@ -6208,7 +6118,6 @@ olx.source.WMTSOptions.prototype.wrapX;
|
|||||||
* url: (string|undefined),
|
* url: (string|undefined),
|
||||||
* urls: (Array.<string>|undefined),
|
* urls: (Array.<string>|undefined),
|
||||||
* wrapX: (boolean|undefined)}}
|
* wrapX: (boolean|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.XYZOptions;
|
olx.source.XYZOptions;
|
||||||
|
|
||||||
@@ -6376,7 +6285,6 @@ olx.source.XYZOptions.prototype.wrapX;
|
|||||||
* config: (Object|undefined),
|
* config: (Object|undefined),
|
||||||
* map: (string|undefined),
|
* map: (string|undefined),
|
||||||
* account: string}}
|
* account: string}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.CartoDBOptions;
|
olx.source.CartoDBOptions;
|
||||||
|
|
||||||
@@ -6489,7 +6397,6 @@ olx.source.CartoDBOptions.prototype.account;
|
|||||||
* url: !string,
|
* url: !string,
|
||||||
* tierSizeCalculation: (string|undefined),
|
* tierSizeCalculation: (string|undefined),
|
||||||
* size: ol.Size}}
|
* size: ol.Size}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.source.ZoomifyOptions;
|
olx.source.ZoomifyOptions;
|
||||||
|
|
||||||
@@ -6576,7 +6483,6 @@ olx.style;
|
|||||||
* snapToPixel: (boolean|undefined),
|
* snapToPixel: (boolean|undefined),
|
||||||
* stroke: (ol.style.Stroke|undefined),
|
* stroke: (ol.style.Stroke|undefined),
|
||||||
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.CircleOptions;
|
olx.style.CircleOptions;
|
||||||
|
|
||||||
@@ -6631,7 +6537,6 @@ olx.style.CircleOptions.prototype.atlasManager;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{color: (ol.Color|ol.ColorLike|undefined)}}
|
* @typedef {{color: (ol.Color|ol.ColorLike|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.FillOptions;
|
olx.style.FillOptions;
|
||||||
|
|
||||||
@@ -6664,7 +6569,6 @@ olx.style.FillOptions.prototype.color;
|
|||||||
* size: (ol.Size|undefined),
|
* size: (ol.Size|undefined),
|
||||||
* imgSize: (ol.Size|undefined),
|
* imgSize: (ol.Size|undefined),
|
||||||
* src: (string|undefined)}}
|
* src: (string|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.IconOptions;
|
olx.style.IconOptions;
|
||||||
|
|
||||||
@@ -6841,7 +6745,6 @@ olx.style.IconOptions.prototype.src;
|
|||||||
* rotation: (number|undefined),
|
* rotation: (number|undefined),
|
||||||
* rotateWithView: (boolean|undefined),
|
* rotateWithView: (boolean|undefined),
|
||||||
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
* atlasManager: (ol.style.AtlasManager|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.RegularShapeOptions;
|
olx.style.RegularShapeOptions;
|
||||||
|
|
||||||
@@ -6952,7 +6855,6 @@ olx.style.RegularShapeOptions.prototype.atlasManager;
|
|||||||
* lineDash: (Array.<number>|undefined),
|
* lineDash: (Array.<number>|undefined),
|
||||||
* miterLimit: (number|undefined),
|
* miterLimit: (number|undefined),
|
||||||
* width: (number|undefined)}}
|
* width: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.StrokeOptions;
|
olx.style.StrokeOptions;
|
||||||
|
|
||||||
@@ -7023,7 +6925,6 @@ olx.style.StrokeOptions.prototype.width;
|
|||||||
* textBaseline: (string|undefined),
|
* textBaseline: (string|undefined),
|
||||||
* fill: (ol.style.Fill|undefined),
|
* fill: (ol.style.Fill|undefined),
|
||||||
* stroke: (ol.style.Stroke|undefined)}}
|
* stroke: (ol.style.Stroke|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.TextOptions;
|
olx.style.TextOptions;
|
||||||
|
|
||||||
@@ -7121,7 +7022,6 @@ olx.style.TextOptions.prototype.stroke;
|
|||||||
* stroke: (ol.style.Stroke|undefined),
|
* stroke: (ol.style.Stroke|undefined),
|
||||||
* text: (ol.style.Text|undefined),
|
* text: (ol.style.Text|undefined),
|
||||||
* zIndex: (number|undefined)}}
|
* zIndex: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.StyleOptions;
|
olx.style.StyleOptions;
|
||||||
|
|
||||||
@@ -7191,7 +7091,6 @@ olx.tilegrid;
|
|||||||
* sizes: (Array.<ol.Size>|undefined),
|
* sizes: (Array.<ol.Size>|undefined),
|
||||||
* tileSize: (number|ol.Size|undefined),
|
* tileSize: (number|ol.Size|undefined),
|
||||||
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.tilegrid.TileGridOptions;
|
olx.tilegrid.TileGridOptions;
|
||||||
|
|
||||||
@@ -7272,7 +7171,6 @@ olx.tilegrid.TileGridOptions.prototype.tileSizes;
|
|||||||
* sizes: (Array.<ol.Size>|undefined),
|
* sizes: (Array.<ol.Size>|undefined),
|
||||||
* tileSize: (number|ol.Size|undefined),
|
* tileSize: (number|ol.Size|undefined),
|
||||||
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
* tileSizes: (Array.<number|ol.Size>|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.tilegrid.WMTSOptions;
|
olx.tilegrid.WMTSOptions;
|
||||||
|
|
||||||
@@ -7377,7 +7275,6 @@ olx.tilegrid.WMTSOptions.prototype.widths;
|
|||||||
* maxZoom: (number|undefined),
|
* maxZoom: (number|undefined),
|
||||||
* minZoom: (number|undefined),
|
* minZoom: (number|undefined),
|
||||||
* tileSize: (number|ol.Size|undefined)}}
|
* tileSize: (number|ol.Size|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.tilegrid.XYZOptions;
|
olx.tilegrid.XYZOptions;
|
||||||
|
|
||||||
@@ -7433,7 +7330,6 @@ olx.view;
|
|||||||
* nearest: (boolean|undefined),
|
* nearest: (boolean|undefined),
|
||||||
* maxZoom: (number|undefined),
|
* maxZoom: (number|undefined),
|
||||||
* minResolution: (number|undefined)}}
|
* minResolution: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.view.FitOptions;
|
olx.view.FitOptions;
|
||||||
|
|
||||||
@@ -7504,7 +7400,6 @@ olx.view.FitOptions.prototype.maxZoom;
|
|||||||
* viewState: olx.ViewState,
|
* viewState: olx.ViewState,
|
||||||
* viewHints: Array.<number>,
|
* viewHints: Array.<number>,
|
||||||
* wantedTiles: !Object.<string, Object.<string, boolean>>}}
|
* wantedTiles: !Object.<string, Object.<string, boolean>>}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.FrameState;
|
olx.FrameState;
|
||||||
|
|
||||||
@@ -7535,7 +7430,6 @@ olx.FrameState.prototype.viewState;
|
|||||||
* projection: ol.proj.Projection,
|
* projection: ol.proj.Projection,
|
||||||
* resolution: number,
|
* resolution: number,
|
||||||
* rotation: number}}
|
* rotation: number}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.ViewState;
|
olx.ViewState;
|
||||||
|
|
||||||
@@ -7572,7 +7466,6 @@ olx.ViewState.prototype.rotation;
|
|||||||
* @typedef {{initialSize: (number|undefined),
|
* @typedef {{initialSize: (number|undefined),
|
||||||
* maxSize: (number|undefined),
|
* maxSize: (number|undefined),
|
||||||
* space: (number|undefined)}}
|
* space: (number|undefined)}}
|
||||||
* @api
|
|
||||||
*/
|
*/
|
||||||
olx.style.AtlasManagerOptions;
|
olx.style.AtlasManagerOptions;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user