ol 10.7.1-dev.1766142301376 → 10.7.1-dev.1766335921056
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Feature.d.ts +2 -2
- package/Feature.d.ts.map +1 -1
- package/Map.d.ts +4 -4
- package/dist/ol.d.ts +4 -0
- package/dist/ol.d.ts.map +1 -1
- package/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/format/EsriJSON.d.ts +1 -1
- package/format/GeoJSON.d.ts +2 -2
- package/format/JSONFeature.d.ts +1 -1
- package/format/TextFeature.d.ts +1 -1
- package/format/TopoJSON.d.ts +1 -1
- package/format/WKB.d.ts +1 -1
- package/format/XMLFeature.d.ts +1 -1
- package/interaction/DragAndDrop.d.ts +1 -1
- package/interaction/Draw.d.ts +3 -3
- package/interaction/Modify.d.ts +5 -5
- package/interaction/Modify.d.ts.map +1 -1
- package/interaction/Select.d.ts +1 -1
- package/interaction/Select.d.ts.map +1 -1
- package/interaction/Snap.d.ts +12 -12
- package/interaction/Snap.d.ts.map +1 -1
- package/interaction/Translate.d.ts +1 -1
- package/interaction/Translate.d.ts.map +1 -1
- package/layer/Flow.d.ts +2 -2
- package/layer/Heatmap.d.ts +2 -2
- package/layer/Layer.d.ts +2 -2
- package/layer/Layer.d.ts.map +1 -1
- package/layer/Tile.d.ts +1 -1
- package/layer/Vector.d.ts +2 -2
- package/layer/Vector.d.ts.map +1 -1
- package/layer/VectorImage.d.ts +2 -2
- package/layer/VectorImage.d.ts.map +1 -1
- package/layer/VectorTile.d.ts +2 -2
- package/layer/VectorTile.d.ts.map +1 -1
- package/layer/WebGLTile.d.ts +3 -3
- package/layer/WebGLTile.d.ts.map +1 -1
- package/layer/WebGLVector.d.ts +2 -2
- package/layer/WebGLVector.d.ts.map +1 -1
- package/layer/WebGLVectorTile.d.ts +2 -2
- package/layer/WebGLVectorTile.d.ts.map +1 -1
- package/package.json +1 -1
- package/render/canvas.d.ts +2 -2
- package/renderer/canvas/ImageLayer.d.ts +1 -1
- package/renderer/canvas/ImageLayer.d.ts.map +1 -1
- package/renderer/canvas/TileLayer.d.ts +1 -1
- package/renderer/canvas/VectorTileLayer.d.ts +1 -1
- package/source/Cluster.d.ts +2 -2
- package/source/GeoZarr.d.ts +163 -0
- package/source/GeoZarr.d.ts.map +1 -0
- package/source/GeoZarr.js +437 -0
- package/source/ImageTile.d.ts +1 -1
- package/source/TileArcGISRest.d.ts +1 -1
- package/source/TileDebug.d.ts +1 -1
- package/source/TileWMS.d.ts +1 -1
- package/source/UrlTile.d.ts +1 -1
- package/source/ogcTileUtil.d.ts +20 -12
- package/source/ogcTileUtil.d.ts.map +1 -1
- package/source/ogcTileUtil.js +27 -15
- package/style/Style.d.ts +1 -1
- package/tilegrid/TileGrid.d.ts +5 -0
- package/tilegrid/TileGrid.d.ts.map +1 -1
- package/tilegrid/TileGrid.js +8 -0
- package/util.js +1 -1
package/format/EsriJSON.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export type Options = {
|
|
|
43
43
|
*
|
|
44
44
|
* @api
|
|
45
45
|
*/
|
|
46
|
-
declare class EsriJSON extends JSONFeature<Feature<import("../geom
|
|
46
|
+
declare class EsriJSON extends JSONFeature<Feature<import("../geom.js").Geometry>> {
|
|
47
47
|
/**
|
|
48
48
|
* @param {Options} [options] Options.
|
|
49
49
|
*/
|
package/format/GeoJSON.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export type GeoJSONMultiPoint = import("geojson").MultiPoint;
|
|
|
10
10
|
export type GeoJSONMultiLineString = import("geojson").MultiLineString;
|
|
11
11
|
export type GeoJSONMultiPolygon = import("geojson").MultiPolygon;
|
|
12
12
|
export type GeoJSONGeometryCollection = import("geojson").GeometryCollection;
|
|
13
|
-
export type Options<FeatureType extends import("../Feature.js").FeatureLike = Feature<import("../geom
|
|
13
|
+
export type Options<FeatureType extends import("../Feature.js").FeatureLike = Feature<import("../geom.js").Geometry>> = {
|
|
14
14
|
/**
|
|
15
15
|
* Default data projection.
|
|
16
16
|
*/
|
|
@@ -77,7 +77,7 @@ export type Options<FeatureType extends import("../Feature.js").FeatureLike = Fe
|
|
|
77
77
|
* @extends {JSONFeature<FeatureType>}
|
|
78
78
|
* @api
|
|
79
79
|
*/
|
|
80
|
-
declare class GeoJSON<FeatureType extends import("../Feature.js").FeatureLike = Feature<import("../geom
|
|
80
|
+
declare class GeoJSON<FeatureType extends import("../Feature.js").FeatureLike = Feature<import("../geom.js").Geometry>> extends JSONFeature<FeatureType> {
|
|
81
81
|
/**
|
|
82
82
|
* @param {Options<FeatureType>} [options] Options.
|
|
83
83
|
*/
|
package/format/JSONFeature.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export default JSONFeature;
|
|
|
9
9
|
* @extends {FeatureFormat<FeatureType>}
|
|
10
10
|
* @abstract
|
|
11
11
|
*/
|
|
12
|
-
declare class JSONFeature<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom
|
|
12
|
+
declare class JSONFeature<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom.js").Geometry>> extends FeatureFormat<FeatureType> {
|
|
13
13
|
/**
|
|
14
14
|
* @abstract
|
|
15
15
|
* @param {Object} object Object.
|
package/format/TextFeature.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export default TextFeature;
|
|
|
7
7
|
*
|
|
8
8
|
* @abstract
|
|
9
9
|
*/
|
|
10
|
-
declare class TextFeature extends FeatureFormat<import("../Feature.js").default<import("../geom
|
|
10
|
+
declare class TextFeature extends FeatureFormat<import("../Feature.js").default<import("../geom.js").Geometry>> {
|
|
11
11
|
constructor();
|
|
12
12
|
/**
|
|
13
13
|
* Read the feature from the source.
|
package/format/TopoJSON.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export type Options = {
|
|
|
79
79
|
*
|
|
80
80
|
* @api
|
|
81
81
|
*/
|
|
82
|
-
declare class TopoJSON extends JSONFeature<Feature<import("../geom
|
|
82
|
+
declare class TopoJSON extends JSONFeature<Feature<import("../geom.js").Geometry>> {
|
|
83
83
|
/**
|
|
84
84
|
* @param {Options} [options] Options.
|
|
85
85
|
*/
|
package/format/WKB.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export type Options = {
|
|
|
51
51
|
*
|
|
52
52
|
* @api
|
|
53
53
|
*/
|
|
54
|
-
declare class WKB extends FeatureFormat<Feature<import("../geom
|
|
54
|
+
declare class WKB extends FeatureFormat<Feature<import("../geom.js").Geometry>> {
|
|
55
55
|
/**
|
|
56
56
|
* @param {Options} [options] Optional configuration object.
|
|
57
57
|
*/
|
package/format/XMLFeature.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export default XMLFeature;
|
|
|
7
7
|
*
|
|
8
8
|
* @abstract
|
|
9
9
|
*/
|
|
10
|
-
declare class XMLFeature extends FeatureFormat<import("../Feature.js").default<import("../geom
|
|
10
|
+
declare class XMLFeature extends FeatureFormat<import("../Feature.js").default<import("../geom.js").Geometry>> {
|
|
11
11
|
constructor();
|
|
12
12
|
/**
|
|
13
13
|
* @type {XMLSerializer}
|
|
@@ -44,7 +44,7 @@ export type Options = {
|
|
|
44
44
|
* source without removing the existing features (append only), instead of
|
|
45
45
|
* providing the source option listen for the "addfeatures" event.
|
|
46
46
|
*/
|
|
47
|
-
source?: import("../source
|
|
47
|
+
source?: import("../source.js").Vector<import("../Feature.js").default<import("../geom.js").Geometry>> | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* Target projection. By default, the map's view's projection is used.
|
|
50
50
|
*/
|
package/interaction/Draw.d.ts
CHANGED
|
@@ -56,12 +56,12 @@ export type Options = {
|
|
|
56
56
|
/**
|
|
57
57
|
* Destination collection for the drawn features.
|
|
58
58
|
*/
|
|
59
|
-
features?: import("../Collection.js").default<Feature<import("../geom
|
|
59
|
+
features?: import("../Collection.js").default<Feature<import("../geom.js").Geometry>> | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* Destination source for
|
|
62
62
|
* the drawn features.
|
|
63
63
|
*/
|
|
64
|
-
source?: VectorSource<Feature<import("../geom
|
|
64
|
+
source?: VectorSource<Feature<import("../geom.js").Geometry>> | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* Delay in milliseconds after pointerdown
|
|
67
67
|
* before the current vertex can be dragged to its exact position.
|
|
@@ -149,7 +149,7 @@ export type Options = {
|
|
|
149
149
|
* not provided, the interaction's `source` will be used. Tracing requires that the interaction is configured with
|
|
150
150
|
* either a `traceSource` or a `source`.
|
|
151
151
|
*/
|
|
152
|
-
traceSource?: VectorSource<Feature<import("../geom
|
|
152
|
+
traceSource?: VectorSource<Feature<import("../geom.js").Geometry>> | undefined;
|
|
153
153
|
/**
|
|
154
154
|
* Wrap the world horizontally on the sketch
|
|
155
155
|
* overlay.
|
package/interaction/Modify.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ export type Options = {
|
|
|
112
112
|
* features to modify. If a vector source is not provided, a feature collection
|
|
113
113
|
* must be provided with the `features` option.
|
|
114
114
|
*/
|
|
115
|
-
source?: VectorSource<Feature<import("../geom
|
|
115
|
+
source?: VectorSource<Feature<import("../geom.js").Geometry>> | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* When configured, point
|
|
118
118
|
* features will be considered for modification based on their visual appearance, instead of being within
|
|
@@ -124,7 +124,7 @@ export type Options = {
|
|
|
124
124
|
* The features the interaction works on. If a feature collection is not
|
|
125
125
|
* provided, a vector source must be provided with the `source` option.
|
|
126
126
|
*/
|
|
127
|
-
features?: Collection<Feature<import("../geom
|
|
127
|
+
features?: Collection<Feature<import("../geom.js").Geometry>> | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* A function that takes a {@link module :ol/Feature~Feature}and returns `true` if the feature may be modified or `false` otherwise.
|
|
130
130
|
*/
|
|
@@ -139,7 +139,7 @@ export type Options = {
|
|
|
139
139
|
* not provided, the interaction's `source` will be used. Tracing requires that the interaction is configured with
|
|
140
140
|
* either a `traceSource` or a `source`.
|
|
141
141
|
*/
|
|
142
|
-
traceSource?: VectorSource<Feature<import("../geom
|
|
142
|
+
traceSource?: VectorSource<Feature<import("../geom.js").Geometry>> | undefined;
|
|
143
143
|
/**
|
|
144
144
|
* Wrap the world horizontally on the sketch
|
|
145
145
|
* overlay.
|
|
@@ -368,7 +368,7 @@ declare class Modify extends PointerInteraction {
|
|
|
368
368
|
* @type {FilterFunction}
|
|
369
369
|
*/
|
|
370
370
|
private filter_;
|
|
371
|
-
featuresCollection_: Collection<Feature<import("../geom
|
|
371
|
+
featuresCollection_: Collection<Feature<import("../geom.js").Geometry>> | undefined;
|
|
372
372
|
/**
|
|
373
373
|
* Internal features array. When adding or removing features, be sure to use
|
|
374
374
|
* addFeature_()/removeFeature_() so that the the segment index is adjusted.
|
|
@@ -527,7 +527,7 @@ declare class Modify extends PointerInteraction {
|
|
|
527
527
|
* @private
|
|
528
528
|
*/
|
|
529
529
|
private updateTrace_;
|
|
530
|
-
getTraceCandidates_(event: any): Feature<import("../geom
|
|
530
|
+
getTraceCandidates_(event: any): Feature<import("../geom.js").Geometry>[];
|
|
531
531
|
/**
|
|
532
532
|
* Activate or deactivate trace state based on a browser event.
|
|
533
533
|
* @param {import("../MapBrowserEvent.js").default} event Event.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modify.d.ts","sourceRoot":"","sources":["Modify.js"],"names":[],"mappings":"AAyLA;;;;GAIG;AACH;IACE;;;;;;OAMG;IACH,kBANW,eAAe,YACf,UAAU,CAAC,OAAO,CAAC,mBAEnB,OAAO,uBAAuB,EAAE,OAAO,EAmBjD;IAbC;;;;OAIG;IACH,UAHU,UAAU,CAAC,OAAO,CAAC,CAGL;IAExB;;;;OAIG;IACH,iBAHU,OAAO,uBAAuB,EAAE,OAAO,CAGX;CAEzC;;;;;;;;;;aA7Ha,OAAO;;;;cACP,OAAO,2BAA2B,EAAE,OAAO;;;;;;;;aAE3C,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;6BAOrB,CAAS,IAAO,EAAP,OAAO,KAAE,OAAO;0BAIzB,CAAC,WAAW,EAAE,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAkHrB,MAAM,IACN,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,oBAAoB,EAAE,KAAK,GAC1E,eAAqB,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GAC/D,OAAW,eAAe,EAAE,WAAW,CAAC,WAAW,GAAC,aAAa,EAAE,WAAW,EAAE,MAAM,CAAC,GACvF,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,oBAAoB,EAAE,KAAK,GACrH,eAAqB,GAAC,WAAW,GAAC,aAAa,EAAE,MAAM,CAAC;kBAhNvC,oBAAoB;uBAbf,kBAAkB;oBAErB,eAAe;uBAiEzB,MAAM;;;;;AAmJhB;;;;;;;;GAQG;AAEH;;;;;;;;;;;;;;;;;;;;GAoBG;AACH;IACE;;OAEG;IACH,qBAFW,OAAO,EA6SjB;IAuJD;;;OAGG;IACH,yBAKC;IAED;;;OAGG;IACH,4BAKC;IAED;;;OAGG;IACH,qCAKC;IAED;;;OAGG;IACH,wCAKC;IAqCD;;;;;OAKG;IACH,6BAQC;IA1gBC;;OAEG;IACH,IAFU,iBAAiB,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAEnD;IAEP;;OAEG;IACH,MAFU,iBAAiB,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAEjD;IAET;;OAEG;IACH,IAFU,iBAAiB,CAAC,IAAI,CAAC,CAE1B;IAEP;;;OAGG;IACH,mBAAuE;IAEvE;;;;OAIG;IACH,gCAEC;IAED;;;OAGG;IACH,yBAEgC;IAEhC;;;OAGG;IACH,+BAEU;IAEV;;;;OAIG;IACH,uBAA0B;IAE1B;;;;OAIG;IACH,wBAA2B;IAE3B;;;OAGG;IACH,wBAA6B;IAE7B;;;;;OAKG;IACH,+BAAmC;IAEnC;;;OAGG;IACH,+BAAkC;IAElC;;;;OAIG;IACH,eAAyB;IAEzB;;;OAGG;IACH,wBACoE;IAEpE;;;OAGG;IACH,yBAA6B;IAE7B;;;;;OAKG;IACH,yBAA6B;IAE7B;;;OAGG;IACH,sBAAuB;IAEvB;;;;OAIG;IACH,iBAQE;IAEF;;;;OAIG;IACH,yBAUC;IAED;;;OAGG;IACH,gBAAmB;IAEnB;;;OAGG;IACH,qBAAiE;IAEjE;;;OAGG;IACH,wBAAoB;IAGpB;;;OAGG;IACH,oBAAkC;IAElC;;;OAGG;IACH,uBAA0B;IAE1B;;;OAGG;IACH,sBAAyB;IAEzB;;;;OAIG;IACH,mCAC4C;IAE5C;;;OAGG;IACH,gBAA2D;IAqBzD,
|
|
1
|
+
{"version":3,"file":"Modify.d.ts","sourceRoot":"","sources":["Modify.js"],"names":[],"mappings":"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"}
|
package/interaction/Select.d.ts
CHANGED
|
@@ -125,7 +125,7 @@ export type Options = {
|
|
|
125
125
|
* selectable. If the option is absent, all visible layers will be considered
|
|
126
126
|
* selectable.
|
|
127
127
|
*/
|
|
128
|
-
layers?: import("../layer
|
|
128
|
+
layers?: import("../layer.js").Layer<import("../source.js").Source, import("../renderer/Layer.js").default<any>>[] | ((arg0: import("../layer/Layer.js").default<import("../source/Source").default>) => boolean) | undefined;
|
|
129
129
|
/**
|
|
130
130
|
* Style for the selected features. By default the default edit style is used
|
|
131
131
|
* (see {@link module :ol/style/Style~Style}). Set to `null` if this interaction should not apply
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["Select.js"],"names":[],"mappings":"AA4BA;;;;GAIG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AAEH;;;;GAIG;AACH;IACE;;;;;;OAMG;IACH,kBANW,eAAe,YACf,KAAK,CAAC,OAAO,eAAe,EAAE,OAAO,CAAC,cACtC,KAAK,CAAC,OAAO,eAAe,EAAE,OAAO,CAAC,mBACtC,OAAO,uBAAuB,EAAE,OAAO,EA0BjD;IApBC;;;;OAIG;IACH,UAHU,KAAK,CAAC,OAAO,eAAe,EAAE,OAAO,CAAC,CAGxB;IAExB;;;;OAIG;IACH,YAHU,KAAK,CAAC,OAAO,eAAe,EAAE,OAAO,CAAC,CAGpB;IAE5B;;;;OAIG;IACH,iBAHU,OAAO,uBAAuB,EAAE,OAAO,CAGX;CAEzC;;;;;;6BAhGY,CAAS,IAA+B,EAA/B,OAAO,eAAe,EAAE,OAAO,EAAE,IAAuE,EAAvE,OAAO,mBAAmB,EAAE,OAAO,CAAC,OAAO,kBAAkB,EAAE,OAAO,CAAC,KAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["Select.js"],"names":[],"mappings":"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"}
|
package/interaction/Snap.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export type SegmentData = {
|
|
|
12
12
|
/**
|
|
13
13
|
* Feature which intersects.
|
|
14
14
|
*/
|
|
15
|
-
intersectionFeature?: import("../Feature.js").default<import("../geom
|
|
15
|
+
intersectionFeature?: import("../Feature.js").default<import("../geom.js").Geometry> | undefined;
|
|
16
16
|
/**
|
|
17
17
|
* Segment.
|
|
18
18
|
*/
|
|
@@ -21,7 +21,7 @@ export type SegmentData = {
|
|
|
21
21
|
/**
|
|
22
22
|
* A function taking a {@link module :ol/geom/Geometry~Geometry} as argument and returning an array of {@link Segment}s.
|
|
23
23
|
*/
|
|
24
|
-
export type Segmenter<GeometryType extends import("../geom/Geometry.js").default = import("../geom
|
|
24
|
+
export type Segmenter<GeometryType extends import("../geom/Geometry.js").default = import("../geom.js").Geometry> = (geometry: GeometryType, projection?: import("../proj/Projection.js").default) => Array<Segment>;
|
|
25
25
|
/**
|
|
26
26
|
* Each segmenter specified here will override the default segmenter for the
|
|
27
27
|
* corresponding geometry type. To exclude all geometries of a specific geometry type from being snapped to,
|
|
@@ -31,45 +31,45 @@ export type Segmenters = {
|
|
|
31
31
|
/**
|
|
32
32
|
* Point segmenter.
|
|
33
33
|
*/
|
|
34
|
-
Point?: Segmenter<import("../geom
|
|
34
|
+
Point?: Segmenter<import("../geom.js").Point> | null | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* LineString segmenter.
|
|
37
37
|
*/
|
|
38
|
-
LineString?: Segmenter<import("../geom
|
|
38
|
+
LineString?: Segmenter<import("../geom.js").LineString> | null | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* Polygon segmenter.
|
|
41
41
|
*/
|
|
42
|
-
Polygon?: Segmenter<import("../geom
|
|
42
|
+
Polygon?: Segmenter<import("../geom.js").Polygon> | null | undefined;
|
|
43
43
|
/**
|
|
44
44
|
* Circle segmenter.
|
|
45
45
|
*/
|
|
46
|
-
Circle?: Segmenter<import("../geom
|
|
46
|
+
Circle?: Segmenter<import("../geom.js").Circle> | null | undefined;
|
|
47
47
|
/**
|
|
48
48
|
* GeometryCollection segmenter.
|
|
49
49
|
*/
|
|
50
|
-
GeometryCollection?: Segmenter<import("../geom
|
|
50
|
+
GeometryCollection?: Segmenter<import("../geom.js").GeometryCollection> | null | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* MultiPoint segmenter.
|
|
53
53
|
*/
|
|
54
|
-
MultiPoint?: Segmenter<import("../geom
|
|
54
|
+
MultiPoint?: Segmenter<import("../geom.js").MultiPoint> | null | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* MultiLineString segmenter.
|
|
57
57
|
*/
|
|
58
|
-
MultiLineString?: Segmenter<import("../geom
|
|
58
|
+
MultiLineString?: Segmenter<import("../geom.js").MultiLineString> | null | undefined;
|
|
59
59
|
/**
|
|
60
60
|
* MultiPolygon segmenter.
|
|
61
61
|
*/
|
|
62
|
-
MultiPolygon?: Segmenter<import("../geom
|
|
62
|
+
MultiPolygon?: Segmenter<import("../geom.js").MultiPolygon> | null | undefined;
|
|
63
63
|
};
|
|
64
64
|
export type Options = {
|
|
65
65
|
/**
|
|
66
66
|
* Snap to these features. Either this option or source should be provided.
|
|
67
67
|
*/
|
|
68
|
-
features?: import("../Collection.js").default<import("../Feature.js").default<import("../geom
|
|
68
|
+
features?: import("../Collection.js").default<import("../Feature.js").default<import("../geom.js").Geometry>> | undefined;
|
|
69
69
|
/**
|
|
70
70
|
* Snap to features from this source. Either this option or features should be provided
|
|
71
71
|
*/
|
|
72
|
-
source?: import("../source
|
|
72
|
+
source?: import("../source.js").Vector<import("../Feature.js").default<import("../geom.js").Geometry>> | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* Snap to edges.
|
|
75
75
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Snap.d.ts","sourceRoot":"","sources":["Snap.js"],"names":[],"mappings":";;;;;sBAkCa,KAAK,CAAC,OAAO,kBAAkB,EAAE,UAAU,CAAC;;;;;aAO3C,OAAO,eAAe,EAAE,OAAO;;;;;;;;aAE/B,OAAO;;;;;sBAIiC,YAAY,SAArD,OAAQ,qBAAqB,EAAE,OAAQ,
|
|
1
|
+
{"version":3,"file":"Snap.d.ts","sourceRoot":"","sources":["Snap.js"],"names":[],"mappings":";;;;;sBAkCa,KAAK,CAAC,OAAO,kBAAkB,EAAE,UAAU,CAAC;;;;;aAO3C,OAAO,eAAe,EAAE,OAAO;;;;;;;;aAE/B,OAAO;;;;;sBAIiC,YAAY,SAArD,OAAQ,qBAAqB,EAAE,OAAQ,oCACvC,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,CAAC,EAAE,OAAO,uBAAuB,EAAE,OAAO,KAAK,KAAK,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2C/F,OAAO,kBAAkB,EAAE,UAAU,GAAC,IAAI;;;;iBAC1C,OAAO,aAAa,EAAE,KAAK,GAAC,IAAI;;;;aAChC,OAAO,eAAe,EAAE,OAAO,GAAC,IAAI;;;;aACpC,OAAO,GAAC,IAAI;;;;;4BAgMb,MAAM,IACN,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,oBAAoB,EAAE,KAAK,GAC1E,eAAqB,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GAC/D,OAAW,eAAe,EAAE,WAAW,CAAC,MAAM,GAAC,QAAQ,EAAE,SAAS,EAAE,MAAM,CAAC,GAC3E,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,oBAAoB,EAAE,KAAK,GACrH,eAAqB,GAAC,MAAM,GAAC,QAAQ,EAAE,MAAM,CAAC;AAP/C;;;;;;;;GAQG;AAEH;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH;IACE;;OAEG;IACH,sBAFW,OAAO,EAmHjB;IAzGC;;OAEG;IACH,IAFU,eAAe,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAEjD;IAEP;;OAEG;IACH,MAFU,eAAe,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAE/C;IAET;;OAEG;IACH,IAFU,eAAe,CAAC,IAAI,CAAC,CAExB;IAEP;;;OAGG;IACH,gBAAqD;IAErD;;;OAGG;IACH,gBAAmE;IAEnE;;;OAGG;IACH,cAA6D;IAE7D;;;OAGG;IACH,sBACmE;IAEnE;;;OAGG;IACH,kBAA2D;IAE3D;;;OAGG;IACH,8BAA+B;IAE/B;;;OAGG;IACH,mCAAoC;IAEpC;;;;;OAKG;IACH,gCAAiC;IAEjC;;;;;;OAMG;IACH,yBAA0B;IAE1B;;;OAGG;IACH,wBACoE;IAEpE;;;;OAIG;IACH,eAAyB;IAEzB;;;;OAIG;IACH,iBAAoB;IAEpB;;;OAGG;IACH,oBAIC;IAGH;;;;;;OAMG;IACH,oBALW,OAAO,eAAe,EAAE,OAAO,aAC/B,OAAO,QAiGjB;IAED;;;OAGG;IACH,qBASC;IAED;;;;;;;;OAQG;IACH,0BAEC;IAoCD;;;OAGG;IACH,0BAKC;IAED;;;OAGG;IACH,6BAMC;IAED;;;OAGG;IACH,6BAOC;IAmBD;;;;;;OAMG;IACH,uBALW,OAAO,eAAe,EAAE,OAAO,aAC/B,OAAO,QAqBjB;IAED;;;;;;OAMG;IACH,qBAHW,OAAO,WAAW,EAAE,OAAO,QAwDrC;IAED;;;;;OAKG;IACH,cALW,OAAO,aAAa,EAAE,KAAK,mBAC3B,OAAO,kBAAkB,EAAE,UAAU,OACrC,OAAO,WAAW,EAAE,OAAO,GAC1B,WAAW,GAAC,IAAI,CAkH3B;IAED;;;OAGG;IACH,uBAGC;CACF;0BA71BsC,wBAAwB;+BAqBhC,cAAc"}
|
|
@@ -94,7 +94,7 @@ export type Options = {
|
|
|
94
94
|
* absent, all visible layers will be considered translatable.
|
|
95
95
|
* Not used if `features` is provided.
|
|
96
96
|
*/
|
|
97
|
-
layers?: import("../layer
|
|
97
|
+
layers?: import("../layer.js").Layer<import("../source.js").Source, import("../renderer/Layer.js").default<any>>[] | ((arg0: import("../layer/Layer.js").default<import("../source/Source").default>) => boolean) | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* A function
|
|
100
100
|
* that takes a {@link module :ol/Feature~Feature} and an
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Translate.d.ts","sourceRoot":"","sources":["Translate.js"],"names":[],"mappings":"AAoCA;;;;;;GAMG;AAEH;;;;;;;;;;;;;;;;;;;GAmBG;AAEH;;;;GAIG;AACH;IACE;;;;;;OAMG;IACH,kBANW,kBAAkB,YAClB,UAAU,CAAC,OAAO,CAAC,cACnB,OAAO,kBAAkB,EAAE,UAAU,mBACrC,OAAO,kBAAkB,EAAE,UAAU,mBACrC,OAAO,uBAAuB,EAAE,OAAO,EAkCjD;IA7BC;;;;OAIG;IACH,UAHU,UAAU,CAAC,OAAO,CAAC,CAGL;IAExB;;;;;OAKG;IACH,YAHU,OAAO,kBAAkB,EAAE,UAAU,CAGnB;IAE5B;;;;;OAKG;IACH,iBAHU,OAAO,kBAAkB,EAAE,UAAU,CAGT;IAEtC;;;;OAIG;IACH,iBAHU,OAAO,uBAAuB,EAAE,OAAO,CAGX;CAEzC;;;;;;;;6BAtEY,CAAS,IAAO,EAAP,OAAO,EAAE,IAAuE,EAAvE,OAAO,mBAAmB,EAAE,OAAO,CAAC,OAAO,kBAAkB,EAAE,OAAO,CAAC,KAAE,OAAO;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Translate.d.ts","sourceRoot":"","sources":["Translate.js"],"names":[],"mappings":"AAoCA;;;;;;GAMG;AAEH;;;;;;;;;;;;;;;;;;;GAmBG;AAEH;;;;GAIG;AACH;IACE;;;;;;OAMG;IACH,kBANW,kBAAkB,YAClB,UAAU,CAAC,OAAO,CAAC,cACnB,OAAO,kBAAkB,EAAE,UAAU,mBACrC,OAAO,kBAAkB,EAAE,UAAU,mBACrC,OAAO,uBAAuB,EAAE,OAAO,EAkCjD;IA7BC;;;;OAIG;IACH,UAHU,UAAU,CAAC,OAAO,CAAC,CAGL;IAExB;;;;;OAKG;IACH,YAHU,OAAO,kBAAkB,EAAE,UAAU,CAGnB;IAE5B;;;;;OAKG;IACH,iBAHU,OAAO,kBAAkB,EAAE,UAAU,CAGT;IAEtC;;;;OAIG;IACH,iBAHU,OAAO,uBAAuB,EAAE,OAAO,CAGX;CAEzC;;;;;;;;6BAtEY,CAAS,IAAO,EAAP,OAAO,EAAE,IAAuE,EAAvE,OAAO,mBAAmB,EAAE,OAAO,CAAC,OAAO,kBAAkB,EAAE,OAAO,CAAC,KAAE,OAAO;;;;;;;;;;;;;;;;;;;;;iIAU7C,OAAO,mBAAmB,EAAE,OAAO,CAAC,OAAO,kBAAkB,EAAE,OAAO,CAAC,KAAG,OAAO;;;;;;;;;;;;;;;;;iCA+DtI,MAAM,IACN,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,oBAAoB,EAAE,KAAK,GAC1E,eAAqB,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GAC/D,OAAW,eAAe,EAAE,WAAW,CAAC,cAAc,GAAC,gBAAgB,GAAC,aAAa,EAAE,cAAc,EAAE,MAAM,CAAC,GAC9G,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,oBAAoB,EAAE,KAAK,GACrH,eAAqB,GAAC,cAAc,GAAC,gBAAgB,GAAC,aAAa,EAAE,MAAM,CAAC;kBAnH3D,oBAAoB;uBAFf,kBAAkB;oBACrB,eAAe;0BASzB,MAAM;;;;;;AAoGhB;;;;;;;;GAQG;AAEH;;;;;;;;;GASG;AACH;IACE;;OAEG;IACH,sBAFW,OAAO,EA2FjB;IApFC;;OAEG;IACH,IAFU,oBAAoB,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAEtD;IAEP;;OAEG;IACH,MAFU,oBAAoB,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAEpD;IAET;;OAEG;IACH,IAFU,oBAAoB,CAAC,IAAI,CAAC,CAE7B;IAEP;;;;OAIG;IACH,wBAA2B;IAE3B;;;;OAIG;IACH,yBAA4B;IAE5B;;;OAGG;IACH,kBAAyE;IAiBzE;;;OAGG;IACH,qBAA+B;IAE/B;;;OAGG;IACH,gBAAwE;IAExE;;;OAGG;IACH,sBAAoE;IAEpE;;;OAGG;IACH,mBAAgE;IAEhE;;;OAGG;IACH,qBAAwB;IAsI1B;;;;;;;;OAQG;IACH,yBAiBC;IAED;;;;OAIG;IACH,mBAHY,MAAM,CAKjB;IAED;;;;;OAKG;IACH,8BAHW,MAAM,QAKhB;IAED;;;;;;OAMG;IACH,qBAHW,OAAO,WAAW,EAAE,OAAO,QAOrC;IAED;;OAEG;IACH,6BAEC;IAED;;;OAGG;IACH,qBAUC;CACF;+BA3a8B,cAAc"}
|
package/layer/Flow.d.ts
CHANGED
|
@@ -120,7 +120,7 @@ export type Options = {
|
|
|
120
120
|
/**
|
|
121
121
|
* Source for this layer.
|
|
122
122
|
*/
|
|
123
|
-
source?: import("../source
|
|
123
|
+
source?: import("../source.js").DataTile<import("../DataTile.js").default> | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* Sets the layer as overlay on a map. The map will not manage
|
|
126
126
|
* this layer in its layers collection, and the layer will be rendered on top. This is useful for
|
|
@@ -146,7 +146,7 @@ export type Options = {
|
|
|
146
146
|
* @fires import("../render/Event.js").RenderEvent#prerender
|
|
147
147
|
* @fires import("../render/Event.js").RenderEvent#postrender
|
|
148
148
|
*/
|
|
149
|
-
declare class FlowLayer extends BaseTileLayer<import("../source
|
|
149
|
+
declare class FlowLayer extends BaseTileLayer<import("../source.js").DataTile<import("../DataTile.js").default>, FlowLayerRenderer> {
|
|
150
150
|
/**
|
|
151
151
|
* @param {Options} options Flow layer options.
|
|
152
152
|
*/
|
package/layer/Heatmap.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export type HeatmapEventTypes = "change:blur" | "change:radius" | "change:gradie
|
|
|
5
5
|
*/
|
|
6
6
|
export type HeatmapOnSignature<Return> = import("../Observable").OnSignature<import("../Observable").EventTypes, import("../events/Event.js").default, Return> & import("../Observable").OnSignature<import("./Base").BaseLayerObjectEventTypes | import("./Layer.js").LayerEventType | HeatmapEventTypes, import("../Object").ObjectEvent, Return> & import("../Observable").OnSignature<import("../render/EventType").LayerRenderEventTypes, import("../render/Event").default, Return> & import("../Observable").CombinedOnSignature<import("../Observable").EventTypes | import("./Base").BaseLayerObjectEventTypes | import("./Layer.js").LayerEventType | HeatmapEventTypes | import("../render/EventType").LayerRenderEventTypes, Return>;
|
|
7
7
|
export type WeightExpression = import("../style/flat.js").NumberExpression | string | ((arg0: import("../Feature.js").default) => number);
|
|
8
|
-
export type Options<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom.js").Geometry>, VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
8
|
+
export type Options<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom.js").Geometry>, VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<FeatureType>> = {
|
|
9
9
|
/**
|
|
10
10
|
* A CSS class name to set to the layer element.
|
|
11
11
|
*/
|
|
@@ -106,7 +106,7 @@ export type Options<FeatureType extends import("../Feature.js").FeatureLike = im
|
|
|
106
106
|
* @extends {BaseVector<FeatureType, VectorSourceType, WebGLVectorLayerRenderer>}
|
|
107
107
|
* @api
|
|
108
108
|
*/
|
|
109
|
-
declare class Heatmap<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom.js").Geometry>, VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
109
|
+
declare class Heatmap<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom.js").Geometry>, VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<FeatureType>> extends BaseVector<FeatureType, VectorSourceType, WebGLVectorLayerRenderer> {
|
|
110
110
|
/**
|
|
111
111
|
* @param {Options<FeatureType, VectorSourceType>} [options] Options.
|
|
112
112
|
*/
|
package/layer/Layer.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export type LayerEventType = "sourceready" | "change:source";
|
|
|
13
13
|
* *
|
|
14
14
|
*/
|
|
15
15
|
export type LayerOnSignature<Return> = import("../Observable").OnSignature<import("../Observable").EventTypes, import("../events/Event.js").default, Return> & import("../Observable").OnSignature<import("./Base").BaseLayerObjectEventTypes | LayerEventType, import("../Object").ObjectEvent, Return> & import("../Observable").OnSignature<import("../render/EventType").LayerRenderEventTypes, import("../render/Event").default, Return> & import("../Observable").CombinedOnSignature<import("../Observable").EventTypes | import("./Base").BaseLayerObjectEventTypes | LayerEventType | import("../render/EventType").LayerRenderEventTypes, Return>;
|
|
16
|
-
export type Options<SourceType extends import("../source/Source.js").default = import("../source
|
|
16
|
+
export type Options<SourceType extends import("../source/Source.js").default = import("../source.js").Source> = {
|
|
17
17
|
/**
|
|
18
18
|
* A CSS class name to set to the layer element.
|
|
19
19
|
*/
|
|
@@ -204,7 +204,7 @@ export type State = {
|
|
|
204
204
|
* @template {import("../renderer/Layer.js").default} [RendererType=import("../renderer/Layer.js").default]
|
|
205
205
|
* @api
|
|
206
206
|
*/
|
|
207
|
-
declare class Layer<SourceType extends import("../source/Source.js").default = import("../source
|
|
207
|
+
declare class Layer<SourceType extends import("../source/Source.js").default = import("../source.js").Source, RendererType extends import("../renderer/Layer.js").default<any> = import("../renderer/Layer.js").default<any>> extends BaseLayer {
|
|
208
208
|
/**
|
|
209
209
|
* @param {Options<SourceType>} options Layer options.
|
|
210
210
|
*/
|
package/layer/Layer.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Layer.d.ts","sourceRoot":"","sources":["Layer.js"],"names":[],"mappings":"AA0hBA;;;;;;GAMG;AACH,mCAJW,KAAK,aACL,OAAO,YAAY,EAAE,KAAK,GACzB,OAAO,CAelB;;6BAjiBY,CAAS,IAA8B,EAA9B,OAAO,WAAW,EAAE,UAAU,KAAE,WAAW;6BAIpD,aAAa,GAAC,eAAe;;;;6BAI7B,MAAM,IACN,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,QAAQ,EAAE,yBAAyB,GAC5E,cAAc,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GAC9D,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,qBAAqB,EAAE,qBAAqB,EAAE,OAAO,iBAAiB,EAAE,OAAO,EAAE,MAAM,CAAC,GACvI,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,QAAQ,EAAE,yBAAyB,GAAC,cAAc,GAC5I,OAAa,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,CAAC;oBAIb,UAAU,SAAnD,OAAQ,qBAAqB,EAAE,OAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA8BtC,OAAO,YAAY,EAAE,OAAO;;;;aAC5B,MAAM;;;;aACN,OAAO;;;;aACP,OAAO;;;;;;;;YAEP,MAAM;;;;mBACN,MAAM;;;;mBACN,MAAM;;;;aACN,MAAM;;;;aACN,MAAM;;AA1DpB;;GAEG;AAEH;;GAEG;AAEH;;;;;;;;GAQG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAEH;;;;;;;;;;;;GAYG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,oBAJsD,UAAU,SAAnD,OAAQ,qBAAqB,EAAE,OAAQ,
|
|
1
|
+
{"version":3,"file":"Layer.d.ts","sourceRoot":"","sources":["Layer.js"],"names":[],"mappings":"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"}
|
package/layer/Tile.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export default TileLayer;
|
|
|
11
11
|
* @extends BaseTileLayer<TileSourceType, CanvasTileLayerRenderer>
|
|
12
12
|
* @api
|
|
13
13
|
*/
|
|
14
|
-
declare class TileLayer<TileSourceType extends import("../source/Tile.js").default = import("../source
|
|
14
|
+
declare class TileLayer<TileSourceType extends import("../source/Tile.js").default = import("../source.js").Tile<import("../Tile.js").default>> extends BaseTileLayer<TileSourceType, CanvasTileLayerRenderer<TileLayer<import("../source.js").Tile<import("../Tile.js").default>> | import("./VectorTile.js").default<import("../source.js").VectorTile<any>, any>>> {
|
|
15
15
|
/**
|
|
16
16
|
* @param {import("./BaseTile.js").Options<TileSourceType>} [options] Tile layer options.
|
|
17
17
|
*/
|
package/layer/Vector.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default VectorLayer;
|
|
2
|
-
export type Options<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
2
|
+
export type Options<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<any>, FeatureType extends import("../Feature.js").FeatureLike = import("./BaseVector.js").ExtractedFeatureType<VectorSourceType>> = {
|
|
3
3
|
/**
|
|
4
4
|
* A CSS class name to set to the layer element.
|
|
5
5
|
*/
|
|
@@ -171,7 +171,7 @@ export type Options<VectorSourceType extends import("../source/Vector.js").defau
|
|
|
171
171
|
* @extends {BaseVectorLayer<FeatureType, VectorSourceType, CanvasVectorLayerRenderer>}
|
|
172
172
|
* @api
|
|
173
173
|
*/
|
|
174
|
-
declare class VectorLayer<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
174
|
+
declare class VectorLayer<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<any>, FeatureType extends import("../Feature.js").FeatureLike = import("./BaseVector.js").ExtractedFeatureType<VectorSourceType>> extends BaseVectorLayer<FeatureType, VectorSourceType, CanvasVectorLayerRenderer> {
|
|
175
175
|
/**
|
|
176
176
|
* @param {Options<VectorSourceType, FeatureType>} [options] Options.
|
|
177
177
|
*/
|
package/layer/Vector.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Vector.d.ts","sourceRoot":"","sources":["Vector.js"],"names":[],"mappings":";oBAOmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE
|
|
1
|
+
{"version":3,"file":"Vector.d.ts","sourceRoot":"","sources":["Vector.js"],"names":[],"mappings":";oBAOmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE,uCACb,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAFlD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AAEH;;;;;;;;;;;;;;;GAeG;AACH,0BALmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE,uCACb,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;IAKhD;;OAEG;IACH,sBAFW,OAAO,CAAC,gBAAgB,EAAE,WAAW,CAAC,EAIhD;CAQF;sCApFqC,mCAAmC;4BAC7C,iBAAiB"}
|
package/layer/VectorImage.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default VectorImageLayer;
|
|
2
|
-
export type Options<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
2
|
+
export type Options<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<any>, FeatureType extends import("../Feature.js").FeatureLike = import("./BaseVector.js").ExtractedFeatureType<VectorSourceType>> = {
|
|
3
3
|
/**
|
|
4
4
|
* A CSS class name to set to the layer element.
|
|
5
5
|
*/
|
|
@@ -160,7 +160,7 @@ export type Options<VectorSourceType extends import("../source/Vector.js").defau
|
|
|
160
160
|
* @extends {BaseVectorLayer<FeatureType, VectorSourceType, CanvasVectorImageLayerRenderer>}
|
|
161
161
|
* @api
|
|
162
162
|
*/
|
|
163
|
-
declare class VectorImageLayer<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
163
|
+
declare class VectorImageLayer<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<any>, FeatureType extends import("../Feature.js").FeatureLike = import("./BaseVector.js").ExtractedFeatureType<VectorSourceType>> extends BaseVectorLayer<FeatureType, VectorSourceType, CanvasVectorImageLayerRenderer> {
|
|
164
164
|
/**
|
|
165
165
|
* @param {Options<VectorSourceType, FeatureType>} [options] Options.
|
|
166
166
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VectorImage.d.ts","sourceRoot":"","sources":["VectorImage.js"],"names":[],"mappings":";oBAOmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE
|
|
1
|
+
{"version":3,"file":"VectorImage.d.ts","sourceRoot":"","sources":["VectorImage.js"],"names":[],"mappings":";oBAOmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE,uCACb,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAFlD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AAEH;;;;;;;;;;;;;;;GAeG;AACH,+BALmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE,uCACb,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;IAKhD;;OAEG;IACH,sBAFW,OAAO,CAAC,gBAAgB,EAAE,WAAW,CAAC,EAehD;IANC;;;OAGG;IACH,oBAC2D;IAG7D;;OAEG;IACH,iBAFY,MAAM,CAIjB;CAQF;2CAlG0C,wCAAwC;4BACvD,iBAAiB"}
|
package/layer/VectorTile.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export type VectorTileRenderType = "hybrid" | "vector";
|
|
|
8
8
|
* *
|
|
9
9
|
*/
|
|
10
10
|
export type ExtractedFeatureType<T> = T extends import("../source/VectorTile.js").default<infer U extends import("../Feature.js").FeatureLike> ? U : never;
|
|
11
|
-
export type Options<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source
|
|
11
|
+
export type Options<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source.js").VectorTile<any>, FeatureType extends import("../Feature").FeatureLike = ExtractedFeatureType<VectorTileSourceType>> = {
|
|
12
12
|
/**
|
|
13
13
|
* A CSS class name to set to the layer element.
|
|
14
14
|
*/
|
|
@@ -236,7 +236,7 @@ export type Options<VectorTileSourceType extends import("../source/VectorTile.js
|
|
|
236
236
|
* @extends {BaseVectorLayer<FeatureType, VectorTileSourceType, CanvasVectorTileLayerRenderer>}
|
|
237
237
|
* @api
|
|
238
238
|
*/
|
|
239
|
-
declare class VectorTileLayer<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source
|
|
239
|
+
declare class VectorTileLayer<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source.js").VectorTile<any>, FeatureType extends import("../Feature.js").FeatureLike = ExtractedFeatureType<VectorTileSourceType>> extends BaseVectorLayer<FeatureType, VectorTileSourceType, CanvasVectorTileLayerRenderer> {
|
|
240
240
|
/**
|
|
241
241
|
* @param {Options<VectorTileSourceType, FeatureType>} [options] Options.
|
|
242
242
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VectorTile.d.ts","sourceRoot":"","sources":["VectorTile.js"],"names":[],"mappings":";;;;uCASa,MAAM,IACN,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,QAAQ,EAAE,yBAAyB,GAClF,OAAa,YAAY,EAAE,cAAc,GAAC,gBAAgB,GAAC,+BAA+B,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GACpI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,qBAAqB,EAAE,qBAAqB,EAAE,OAAO,iBAAiB,EAAE,OAAO,EAAE,MAAM,CAAC,GACvI,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,QAAQ,EAAE,yBAAyB,GAC7H,OAAa,YAAY,EAAE,cAAc,GAAC,gBAAgB,GAAC,+BAA+B,GAAC,OAAO,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,CAAC;mCAI3I,QAAQ,GAAG,QAAQ;;;;iCAInB,CAAC,IACD,CAAC,SAAS,OAAO,yBAAyB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,OAAO,eAAe,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,KAAK;oBAI1D,oBAAoB,SAA9E,OAAQ,yBAAyB,EAAE,OAAO,CAAC,WAAW,CAAE,
|
|
1
|
+
{"version":3,"file":"VectorTile.d.ts","sourceRoot":"","sources":["VectorTile.js"],"names":[],"mappings":";;;;uCASa,MAAM,IACN,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,QAAQ,EAAE,yBAAyB,GAClF,OAAa,YAAY,EAAE,cAAc,GAAC,gBAAgB,GAAC,+BAA+B,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GACpI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,qBAAqB,EAAE,qBAAqB,EAAE,OAAO,iBAAiB,EAAE,OAAO,EAAE,MAAM,CAAC,GACvI,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,QAAQ,EAAE,yBAAyB,GAC7H,OAAa,YAAY,EAAE,cAAc,GAAC,gBAAgB,GAAC,+BAA+B,GAAC,OAAO,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,CAAC;mCAI3I,QAAQ,GAAG,QAAQ;;;;iCAInB,CAAC,IACD,CAAC,SAAS,OAAO,yBAAyB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,OAAO,eAAe,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,KAAK;oBAI1D,oBAAoB,SAA9E,OAAQ,yBAAyB,EAAE,OAAO,CAAC,WAAW,CAAE,2CACpB,WAAW,SAA/C,OAAQ,YAAY,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AArB/C;;;;;;;;GAQG;AAEH;;GAEG;AAEH;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiEG;AAEH;;;;;;;;;;;GAWG;AACH,8BALuE,oBAAoB,SAA9E,OAAQ,yBAAyB,EAAE,OAAO,CAAC,WAAW,CAAE,2CACjB,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;IAKhD;;OAEG;IACH,sBAFW,OAAO,CAAC,oBAAoB,EAAE,WAAW,CAAC,EAkEpD;IArDC;;OAEG;IACH,IAFU,0BAA0B,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAE5D;IAEP;;OAEG;IACH,MAFU,0BAA0B,CAAC,OAAO,WAAW,EAAE,SAAS,CAAC,CAE1D;IAET;;OAEG;IACH,IAFU,0BAA0B,CAAC,IAAI,CAAC,CAEnC;IAEP;;;OAGG;IACH,mBAA2B;IAQ3B;;;OAGG;IACH,oBAA6B;IAoD/B;;;;;;;;;;;OAWG;IACH,4BAJW,OAAO,cAAc,EAAE,MAAM,GAC5B,KAAK,CAAC,WAAW,CAAC,CAO7B;IAED;;OAEG;IACH,iBAFY,oBAAoB,CAI/B;IAED;;;;;OAKG;IACH,cAJY,MAAM,CAMjB;IAED;;;;;OAKG;IACH,6BAJY,OAAO,CAQlB;IAED;;;;;OAKG;IACH,oBAJW,MAAM,QAMhB;IAED;;;;;OAKG;IACH,kDAJW,OAAO,QAMjB;CACF;0CA1QyC,uCAAuC;4BACrD,iBAAiB"}
|
package/layer/WebGLTile.d.ts
CHANGED
|
@@ -100,7 +100,7 @@ export type Options = {
|
|
|
100
100
|
/**
|
|
101
101
|
* Source for this layer.
|
|
102
102
|
*/
|
|
103
|
-
source?: import("../source
|
|
103
|
+
source?: import("../source.js").DataTile<import("../ImageTile.js").default | import("../DataTile.js").default> | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* Array
|
|
106
106
|
* of sources for this layer. Takes precedence over `source`. Can either be an array of sources, or a function that
|
|
@@ -108,7 +108,7 @@ export type Options = {
|
|
|
108
108
|
* {@link module :ol/source.sourcesFromTileGrid} for a helper function to generate sources that are organized in a
|
|
109
109
|
* pyramid following the same pattern as a tile grid. **Note:** All sources must have the same band count and content.
|
|
110
110
|
*/
|
|
111
|
-
sources?: import("../source
|
|
111
|
+
sources?: import("../source.js").DataTile<import("../ImageTile.js").default | import("../DataTile.js").default>[] | ((arg0: import("../extent.js").Extent, arg1: number) => Array<SourceType>) | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* Sets the layer as overlay on a map. The map will not manage
|
|
114
114
|
* this layer in its layers collection, and the layer will be rendered on top. This is useful for
|
|
@@ -165,7 +165,7 @@ export type ParsedStyle = {
|
|
|
165
165
|
* @fires import("../render/Event.js").RenderEvent#postrender
|
|
166
166
|
* @api
|
|
167
167
|
*/
|
|
168
|
-
declare class WebGLTileLayer extends BaseTileLayer<import("../source
|
|
168
|
+
declare class WebGLTileLayer extends BaseTileLayer<import("../source.js").DataTile<import("../ImageTile.js").default | import("../DataTile.js").default>, WebGLTileLayerRenderer<any>> {
|
|
169
169
|
/**
|
|
170
170
|
* @param {Options} [options] Tile layer options.
|
|
171
171
|
*/
|
package/layer/WebGLTile.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WebGLTile.d.ts","sourceRoot":"","sources":["WebGLTile.js"],"names":[],"mappings":";yBAmBa,OAAO,uBAAuB,EAAE,OAAO,CAAC,OAAO,gBAAgB,EAAE,OAAO,GAAC,OAAO,iBAAiB,EAAE,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"WebGLTile.d.ts","sourceRoot":"","sources":["WebGLTile.js"],"names":[],"mappings":";yBAmBa,OAAO,uBAAuB,EAAE,OAAO,CAAC,OAAO,gBAAgB,EAAE,OAAO,GAAC,OAAO,iBAAiB,EAAE,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gIA+C/E,OAAO,cAAc,EAAE,MAAM,QAAE,MAAM,KAAE,KAAK,CAAC,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAiBnF,MAAM;;;;oBACN,MAAM;;;;;;;;;;qBAEN,KAAK,CAAC,OAAO,4BAA4B,EAAE,OAAO,CAAC;;AAwLjE;;;;;;;;;;;;GAYG;AACH;IACE;;OAEG;IACH,sBAFW,OAAO,EA0CjB;IAhCC;;;OAGG;IACH,iBAA+B;IAE/B;;;OAGG;IACH,wBAA2B;IAE3B;;;OAGG;IACH,4BAA8B;IAE9B;;;OAGG;IACH,eAAmB;IAEnB;;;OAGG;IACH,wBAAkD;IAMpD;;;;;OAKG;IACH,mBAJW,OAAO,cAAc,EAAE,MAAM,cAC7B,MAAM,GACL,KAAK,CAAC,UAAU,CAAC,CAW5B;IAED;;;OAGG;IACH,4BAHY,UAAU,CAKrB;IAWD;;OAEG;IACH,4BAkBC;IAED;;;OAGG;IACH,4BAMC;IAED;;OAEG;IACH,wDAUC;IAED;;;;OAIG;IACH,0BAJW,OAAO,QAAQ,EAAE,UAAU,WAC3B,KAAK,CAAC,UAAU,CAAC,GAChB,WAAW,CAYtB;IAED;;;;;;OAMG;IACH,4BANY,OAAO,WAAW,EAAE,UAAU,OAAA,UAC/B,WAAW,GAEV,WAAW,CAuCtB;IAED;;;;;;;OAOG;IACH,gBAFW,KAAK,QAgBf;IAED;;;;OAIG;IACH;;aAGC;CACF;mCA7eM,gCAAgC;0BACb,eAAe"}
|
package/layer/WebGLVector.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export default WebGLVectorLayer;
|
|
|
3
3
|
* *
|
|
4
4
|
*/
|
|
5
5
|
export type ExtractedFeatureType<T> = T extends import("../source/Vector.js").default<infer U extends import("../Feature.js").FeatureLike> ? U : never;
|
|
6
|
-
export type Options<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
6
|
+
export type Options<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<any>, FeatureType extends import("../Feature.js").FeatureLike = ExtractedFeatureType<VectorSourceType>> = {
|
|
7
7
|
/**
|
|
8
8
|
* A CSS class name to set to the layer element.
|
|
9
9
|
*/
|
|
@@ -138,7 +138,7 @@ export type Options<VectorSourceType extends import("../source/Vector.js").defau
|
|
|
138
138
|
* @template {import('../Feature.js').FeatureLike} [FeatureType=ExtractedFeatureType<VectorSourceType>]
|
|
139
139
|
* @extends {Layer<VectorSourceType, WebGLVectorLayerRenderer>}
|
|
140
140
|
*/
|
|
141
|
-
declare class WebGLVectorLayer<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source
|
|
141
|
+
declare class WebGLVectorLayer<VectorSourceType extends import("../source/Vector.js").default<FeatureType> = import("../source.js").Vector<any>, FeatureType extends import("../Feature.js").FeatureLike = ExtractedFeatureType<VectorSourceType>> extends Layer<VectorSourceType, WebGLVectorLayerRenderer> {
|
|
142
142
|
/**
|
|
143
143
|
* @param {Options<VectorSourceType, FeatureType>} [options] Options.
|
|
144
144
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WebGLVector.d.ts","sourceRoot":"","sources":["WebGLVector.js"],"names":[],"mappings":";;;;iCAOa,CAAC,IACD,CAAC,SAAS,OAAO,qBAAqB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,OAAO,eAAe,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,KAAK;oBAI1D,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE
|
|
1
|
+
{"version":3,"file":"WebGLVector.d.ts","sourceRoot":"","sources":["WebGLVector.js"],"names":[],"mappings":";;;;iCAOa,CAAC,IACD,CAAC,SAAS,OAAO,qBAAqB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,OAAO,eAAe,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,KAAK;oBAI1D,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE,uCACb,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAqBpC,OAAO,kBAAkB,EAAE,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA5BtD;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH;;;;;;;;;;;;;;GAcG;AACH,+BAJmE,gBAAgB,SAAtE,OAAQ,qBAAqB,EAAE,OAAO,CAAC,WAAW,CAAE,uCACb,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;IAIhD;;OAEG;IACH,sBAFW,OAAO,CAAC,gBAAgB,EAAE,WAAW,CAAC,EAsBhD;IAfC;;;OAGG;IACH,wBAA8C;IAE9C;;OAEG;IACH,eAA2B;IAE3B;;OAEG;IACH,8BAA0D;IAc5D;;;OAGG;IACH,gCAFW,OAAO,kBAAkB,EAAE,cAAc,QAKnD;IAED;;;OAGG;IACH,gBAFW,OAAO,kBAAkB,EAAE,aAAa,QAMlD;CACF;qCAlHoC,kCAAkC;kBACrD,YAAY"}
|
|
@@ -3,7 +3,7 @@ export default WebGLVectorTileLayer;
|
|
|
3
3
|
* *
|
|
4
4
|
*/
|
|
5
5
|
export type ExtractedFeatureType<T> = T extends import("../source/Vector.js").default<infer U extends import("../Feature.js").FeatureLike> ? U : never;
|
|
6
|
-
export type Options<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source
|
|
6
|
+
export type Options<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source.js").VectorTile<any>, FeatureType extends import("../Feature.js").FeatureLike = ExtractedFeatureType<VectorTileSourceType>> = {
|
|
7
7
|
/**
|
|
8
8
|
* A CSS class name to set to the layer element.
|
|
9
9
|
*/
|
|
@@ -138,7 +138,7 @@ export type Options<VectorTileSourceType extends import("../source/VectorTile.js
|
|
|
138
138
|
* @template {import('../Feature.js').FeatureLike} [FeatureType=ExtractedFeatureType<VectorTileSourceType>]
|
|
139
139
|
* @extends {BaseTileLayer<VectorTileSourceType, WebGLVectorTileLayerRenderer>}
|
|
140
140
|
*/
|
|
141
|
-
declare class WebGLVectorTileLayer<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source
|
|
141
|
+
declare class WebGLVectorTileLayer<VectorTileSourceType extends import("../source/VectorTile.js").default<FeatureType> = import("../source.js").VectorTile<any>, FeatureType extends import("../Feature.js").FeatureLike = ExtractedFeatureType<VectorTileSourceType>> extends BaseTileLayer<VectorTileSourceType, WebGLVectorTileLayerRenderer> {
|
|
142
142
|
/**
|
|
143
143
|
* @param {Options<VectorTileSourceType, FeatureType>} [options] Options.
|
|
144
144
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WebGLVectorTile.d.ts","sourceRoot":"","sources":["WebGLVectorTile.js"],"names":[],"mappings":";;;;iCAOa,CAAC,IACD,CAAC,SAAS,OAAO,qBAAqB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,OAAO,eAAe,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,KAAK;oBAItD,oBAAoB,SAA9E,OAAQ,yBAAyB,EAAE,OAAO,CAAC,WAAW,CAAE,
|
|
1
|
+
{"version":3,"file":"WebGLVectorTile.d.ts","sourceRoot":"","sources":["WebGLVectorTile.js"],"names":[],"mappings":";;;;iCAOa,CAAC,IACD,CAAC,SAAS,OAAO,qBAAqB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,OAAO,eAAe,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,KAAK;oBAItD,oBAAoB,SAA9E,OAAQ,yBAAyB,EAAE,OAAO,CAAC,WAAW,CAAE,2CACjB,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAqBpC,OAAO,kBAAkB,EAAE,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA5BtD;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH;;;;;;;;;;;;;;GAcG;AACH,mCAJuE,oBAAoB,SAA9E,OAAQ,yBAAyB,EAAE,OAAO,CAAC,WAAW,CAAE,2CACjB,WAAW,SAAlD,OAAQ,eAAe,EAAE,WAAY;IAIhD;;OAEG;IACH,sBAFW,OAAO,CAAC,oBAAoB,EAAE,WAAW,CAAC,EAsBpD;IAfC;;;OAGG;IACH,wBAA8C;IAE9C;;OAEG;IACH,eAA2B;IAE3B;;OAEG;IACH,8BAA0D;IAe5D;;;OAGG;IACH,gCAFW,OAAO,kBAAkB,EAAE,cAAc,QAKnD;IAED;;;OAGG;IACH,gBAFW,OAAO,kBAAkB,EAAE,aAAa,QAMlD;CACF;yCAnHwC,sCAAsC;0BACrD,eAAe"}
|