@vaadin/bundles 23.1.0 → 23.1.3
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/node_modules_ol_ImageCanvas_js.js +121 -0
- package/node_modules_ol_ImageCanvas_js.js.map +1 -0
- package/node_modules_ol_ImageTile_js.js +177 -0
- package/node_modules_ol_ImageTile_js.js.map +1 -0
- package/node_modules_ol_TileRange_js.js +154 -0
- package/node_modules_ol_TileRange_js.js.map +1 -0
- package/node_modules_ol_VectorRenderTile_js.js +182 -0
- package/node_modules_ol_VectorRenderTile_js.js.map +1 -0
- package/node_modules_ol_VectorTile_js.js +158 -0
- package/node_modules_ol_VectorTile_js.js.map +1 -0
- package/node_modules_ol_geom_flat_geodesic_js.js +171 -0
- package/node_modules_ol_geom_flat_geodesic_js.js.map +1 -0
- package/node_modules_ol_render_js.js +131 -0
- package/node_modules_ol_render_js.js.map +1 -0
- package/node_modules_ol_structs_LRUCache_js.js +275 -0
- package/node_modules_ol_structs_LRUCache_js.js.map +1 -0
- package/node_modules_ol_style_js.js +47 -0
- package/node_modules_ol_style_js.js.map +1 -0
- package/node_modules_ol_tilecoord_js.js +115 -0
- package/node_modules_ol_tilecoord_js.js.map +1 -0
- package/package.json +148 -120
- package/vaadin-bundle.json +2614 -996
- package/vaadin.js +83021 -36220
- package/vaadin.js.map +1 -1
- package/vendors-node_modules_ol_Geolocation_js.js +379 -0
- package/vendors-node_modules_ol_Geolocation_js.js.map +1 -0
- package/vendors-node_modules_ol_TileCache_js.js +461 -0
- package/vendors-node_modules_ol_TileCache_js.js.map +1 -0
- package/vendors-node_modules_ol_Tile_js.js +330 -0
- package/vendors-node_modules_ol_Tile_js.js.map +1 -0
- package/vendors-node_modules_ol_index_js.js +874 -0
- package/vendors-node_modules_ol_index_js.js.map +1 -0
- package/vendors-node_modules_ol_layer_Graticule_js.js +1359 -0
- package/vendors-node_modules_ol_layer_Graticule_js.js.map +1 -0
- package/vendors-node_modules_ol_style_Text_js.js +509 -0
- package/vendors-node_modules_ol_style_Text_js.js.map +1 -0
- package/vendors-node_modules_rbush_index_js.js +531 -0
- package/vendors-node_modules_rbush_index_js.js.map +1 -0
|
@@ -0,0 +1,874 @@
|
|
|
1
|
+
(self["webpackChunk_vaadin_bundles"] = self["webpackChunk_vaadin_bundles"] || []).push([["vendors-node_modules_ol_index_js"],{
|
|
2
|
+
|
|
3
|
+
/***/ "./node_modules/ol/ImageCanvas.js":
|
|
4
|
+
/*!****************************************!*\
|
|
5
|
+
!*** ./node_modules/ol/ImageCanvas.js ***!
|
|
6
|
+
\****************************************/
|
|
7
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
8
|
+
|
|
9
|
+
__webpack_require__.r(__webpack_exports__);
|
|
10
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
12
|
+
/* harmony export */ });
|
|
13
|
+
/* harmony import */ var _ImageBase_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ImageBase.js */ "./node_modules/ol/ImageBase.js");
|
|
14
|
+
/* harmony import */ var _ImageState_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ImageState.js */ "./node_modules/ol/ImageState.js");
|
|
15
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
/**
|
|
31
|
+
* @module ol/ImageCanvas
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* A function that is called to trigger asynchronous canvas drawing. It is
|
|
37
|
+
* called with a "done" callback that should be called when drawing is done.
|
|
38
|
+
* If any error occurs during drawing, the "done" callback should be called with
|
|
39
|
+
* that error.
|
|
40
|
+
*
|
|
41
|
+
* @typedef {function(function(Error=): void): void} Loader
|
|
42
|
+
*/
|
|
43
|
+
var ImageCanvas = /** @class */ (function (_super) {
|
|
44
|
+
__extends(ImageCanvas, _super);
|
|
45
|
+
/**
|
|
46
|
+
* @param {import("./extent.js").Extent} extent Extent.
|
|
47
|
+
* @param {number} resolution Resolution.
|
|
48
|
+
* @param {number} pixelRatio Pixel ratio.
|
|
49
|
+
* @param {HTMLCanvasElement} canvas Canvas.
|
|
50
|
+
* @param {Loader} [opt_loader] Optional loader function to
|
|
51
|
+
* support asynchronous canvas drawing.
|
|
52
|
+
*/
|
|
53
|
+
function ImageCanvas(extent, resolution, pixelRatio, canvas, opt_loader) {
|
|
54
|
+
var _this = this;
|
|
55
|
+
var state = opt_loader !== undefined ? _ImageState_js__WEBPACK_IMPORTED_MODULE_0__["default"].IDLE : _ImageState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADED;
|
|
56
|
+
_this = _super.call(this, extent, resolution, pixelRatio, state) || this;
|
|
57
|
+
/**
|
|
58
|
+
* Optional canvas loader function.
|
|
59
|
+
* @type {?Loader}
|
|
60
|
+
* @private
|
|
61
|
+
*/
|
|
62
|
+
_this.loader_ = opt_loader !== undefined ? opt_loader : null;
|
|
63
|
+
/**
|
|
64
|
+
* @private
|
|
65
|
+
* @type {HTMLCanvasElement}
|
|
66
|
+
*/
|
|
67
|
+
_this.canvas_ = canvas;
|
|
68
|
+
/**
|
|
69
|
+
* @private
|
|
70
|
+
* @type {?Error}
|
|
71
|
+
*/
|
|
72
|
+
_this.error_ = null;
|
|
73
|
+
return _this;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Get any error associated with asynchronous rendering.
|
|
77
|
+
* @return {?Error} Any error that occurred during rendering.
|
|
78
|
+
*/
|
|
79
|
+
ImageCanvas.prototype.getError = function () {
|
|
80
|
+
return this.error_;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Handle async drawing complete.
|
|
84
|
+
* @param {Error} [err] Any error during drawing.
|
|
85
|
+
* @private
|
|
86
|
+
*/
|
|
87
|
+
ImageCanvas.prototype.handleLoad_ = function (err) {
|
|
88
|
+
if (err) {
|
|
89
|
+
this.error_ = err;
|
|
90
|
+
this.state = _ImageState_js__WEBPACK_IMPORTED_MODULE_0__["default"].ERROR;
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
this.state = _ImageState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADED;
|
|
94
|
+
}
|
|
95
|
+
this.changed();
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Load not yet loaded URI.
|
|
99
|
+
*/
|
|
100
|
+
ImageCanvas.prototype.load = function () {
|
|
101
|
+
if (this.state == _ImageState_js__WEBPACK_IMPORTED_MODULE_0__["default"].IDLE) {
|
|
102
|
+
this.state = _ImageState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADING;
|
|
103
|
+
this.changed();
|
|
104
|
+
this.loader_(this.handleLoad_.bind(this));
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* @return {HTMLCanvasElement} Canvas element.
|
|
109
|
+
*/
|
|
110
|
+
ImageCanvas.prototype.getImage = function () {
|
|
111
|
+
return this.canvas_;
|
|
112
|
+
};
|
|
113
|
+
return ImageCanvas;
|
|
114
|
+
}(_ImageBase_js__WEBPACK_IMPORTED_MODULE_1__["default"]));
|
|
115
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ImageCanvas);
|
|
116
|
+
//# sourceMappingURL=ImageCanvas.js.map
|
|
117
|
+
|
|
118
|
+
/***/ }),
|
|
119
|
+
|
|
120
|
+
/***/ "./node_modules/ol/ImageTile.js":
|
|
121
|
+
/*!**************************************!*\
|
|
122
|
+
!*** ./node_modules/ol/ImageTile.js ***!
|
|
123
|
+
\**************************************/
|
|
124
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
125
|
+
|
|
126
|
+
__webpack_require__.r(__webpack_exports__);
|
|
127
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
128
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
129
|
+
/* harmony export */ });
|
|
130
|
+
/* harmony import */ var _Tile_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Tile.js */ "./node_modules/ol/Tile.js");
|
|
131
|
+
/* harmony import */ var _TileState_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TileState.js */ "./node_modules/ol/TileState.js");
|
|
132
|
+
/* harmony import */ var _dom_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./dom.js */ "./node_modules/ol/dom.js");
|
|
133
|
+
/* harmony import */ var _Image_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Image.js */ "./node_modules/ol/Image.js");
|
|
134
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
135
|
+
var extendStatics = function (d, b) {
|
|
136
|
+
extendStatics = Object.setPrototypeOf ||
|
|
137
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
138
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
139
|
+
return extendStatics(d, b);
|
|
140
|
+
};
|
|
141
|
+
return function (d, b) {
|
|
142
|
+
if (typeof b !== "function" && b !== null)
|
|
143
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
144
|
+
extendStatics(d, b);
|
|
145
|
+
function __() { this.constructor = d; }
|
|
146
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
147
|
+
};
|
|
148
|
+
})();
|
|
149
|
+
/**
|
|
150
|
+
* @module ol/ImageTile
|
|
151
|
+
*/
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
var ImageTile = /** @class */ (function (_super) {
|
|
157
|
+
__extends(ImageTile, _super);
|
|
158
|
+
/**
|
|
159
|
+
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile coordinate.
|
|
160
|
+
* @param {import("./TileState.js").default} state State.
|
|
161
|
+
* @param {string} src Image source URI.
|
|
162
|
+
* @param {?string} crossOrigin Cross origin.
|
|
163
|
+
* @param {import("./Tile.js").LoadFunction} tileLoadFunction Tile load function.
|
|
164
|
+
* @param {import("./Tile.js").Options} [opt_options] Tile options.
|
|
165
|
+
*/
|
|
166
|
+
function ImageTile(tileCoord, state, src, crossOrigin, tileLoadFunction, opt_options) {
|
|
167
|
+
var _this = _super.call(this, tileCoord, state, opt_options) || this;
|
|
168
|
+
/**
|
|
169
|
+
* @private
|
|
170
|
+
* @type {?string}
|
|
171
|
+
*/
|
|
172
|
+
_this.crossOrigin_ = crossOrigin;
|
|
173
|
+
/**
|
|
174
|
+
* Image URI
|
|
175
|
+
*
|
|
176
|
+
* @private
|
|
177
|
+
* @type {string}
|
|
178
|
+
*/
|
|
179
|
+
_this.src_ = src;
|
|
180
|
+
_this.key = src;
|
|
181
|
+
/**
|
|
182
|
+
* @private
|
|
183
|
+
* @type {HTMLImageElement|HTMLCanvasElement}
|
|
184
|
+
*/
|
|
185
|
+
_this.image_ = new Image();
|
|
186
|
+
if (crossOrigin !== null) {
|
|
187
|
+
_this.image_.crossOrigin = crossOrigin;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* @private
|
|
191
|
+
* @type {?function():void}
|
|
192
|
+
*/
|
|
193
|
+
_this.unlisten_ = null;
|
|
194
|
+
/**
|
|
195
|
+
* @private
|
|
196
|
+
* @type {import("./Tile.js").LoadFunction}
|
|
197
|
+
*/
|
|
198
|
+
_this.tileLoadFunction_ = tileLoadFunction;
|
|
199
|
+
return _this;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* Get the HTML image element for this tile (may be a Canvas, Image, or Video).
|
|
203
|
+
* @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.
|
|
204
|
+
* @api
|
|
205
|
+
*/
|
|
206
|
+
ImageTile.prototype.getImage = function () {
|
|
207
|
+
return this.image_;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* Sets an HTML image element for this tile (may be a Canvas or preloaded Image).
|
|
211
|
+
* @param {HTMLCanvasElement|HTMLImageElement} element Element.
|
|
212
|
+
*/
|
|
213
|
+
ImageTile.prototype.setImage = function (element) {
|
|
214
|
+
this.image_ = element;
|
|
215
|
+
this.state = _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADED;
|
|
216
|
+
this.unlistenImage_();
|
|
217
|
+
this.changed();
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* Tracks loading or read errors.
|
|
221
|
+
*
|
|
222
|
+
* @private
|
|
223
|
+
*/
|
|
224
|
+
ImageTile.prototype.handleImageError_ = function () {
|
|
225
|
+
this.state = _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].ERROR;
|
|
226
|
+
this.unlistenImage_();
|
|
227
|
+
this.image_ = getBlankImage();
|
|
228
|
+
this.changed();
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* Tracks successful image load.
|
|
232
|
+
*
|
|
233
|
+
* @private
|
|
234
|
+
*/
|
|
235
|
+
ImageTile.prototype.handleImageLoad_ = function () {
|
|
236
|
+
var image = /** @type {HTMLImageElement} */ (this.image_);
|
|
237
|
+
if (image.naturalWidth && image.naturalHeight) {
|
|
238
|
+
this.state = _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADED;
|
|
239
|
+
}
|
|
240
|
+
else {
|
|
241
|
+
this.state = _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].EMPTY;
|
|
242
|
+
}
|
|
243
|
+
this.unlistenImage_();
|
|
244
|
+
this.changed();
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* Load not yet loaded URI.
|
|
248
|
+
* @api
|
|
249
|
+
*/
|
|
250
|
+
ImageTile.prototype.load = function () {
|
|
251
|
+
if (this.state == _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].ERROR) {
|
|
252
|
+
this.state = _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].IDLE;
|
|
253
|
+
this.image_ = new Image();
|
|
254
|
+
if (this.crossOrigin_ !== null) {
|
|
255
|
+
this.image_.crossOrigin = this.crossOrigin_;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
if (this.state == _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].IDLE) {
|
|
259
|
+
this.state = _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADING;
|
|
260
|
+
this.changed();
|
|
261
|
+
this.tileLoadFunction_(this, this.src_);
|
|
262
|
+
this.unlisten_ = (0,_Image_js__WEBPACK_IMPORTED_MODULE_1__.listenImage)(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));
|
|
263
|
+
}
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* Discards event handlers which listen for load completion or errors.
|
|
267
|
+
*
|
|
268
|
+
* @private
|
|
269
|
+
*/
|
|
270
|
+
ImageTile.prototype.unlistenImage_ = function () {
|
|
271
|
+
if (this.unlisten_) {
|
|
272
|
+
this.unlisten_();
|
|
273
|
+
this.unlisten_ = null;
|
|
274
|
+
}
|
|
275
|
+
};
|
|
276
|
+
return ImageTile;
|
|
277
|
+
}(_Tile_js__WEBPACK_IMPORTED_MODULE_2__["default"]));
|
|
278
|
+
/**
|
|
279
|
+
* Get a 1-pixel blank image.
|
|
280
|
+
* @return {HTMLCanvasElement} Blank image.
|
|
281
|
+
*/
|
|
282
|
+
function getBlankImage() {
|
|
283
|
+
var ctx = (0,_dom_js__WEBPACK_IMPORTED_MODULE_3__.createCanvasContext2D)(1, 1);
|
|
284
|
+
ctx.fillStyle = 'rgba(0,0,0,0)';
|
|
285
|
+
ctx.fillRect(0, 0, 1, 1);
|
|
286
|
+
return ctx.canvas;
|
|
287
|
+
}
|
|
288
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ImageTile);
|
|
289
|
+
//# sourceMappingURL=ImageTile.js.map
|
|
290
|
+
|
|
291
|
+
/***/ }),
|
|
292
|
+
|
|
293
|
+
/***/ "./node_modules/ol/TileRange.js":
|
|
294
|
+
/*!**************************************!*\
|
|
295
|
+
!*** ./node_modules/ol/TileRange.js ***!
|
|
296
|
+
\**************************************/
|
|
297
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
298
|
+
|
|
299
|
+
__webpack_require__.r(__webpack_exports__);
|
|
300
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
301
|
+
/* harmony export */ "createOrUpdate": () => (/* binding */ createOrUpdate),
|
|
302
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
303
|
+
/* harmony export */ });
|
|
304
|
+
/**
|
|
305
|
+
* @module ol/TileRange
|
|
306
|
+
*/
|
|
307
|
+
/**
|
|
308
|
+
* A representation of a contiguous block of tiles. A tile range is specified
|
|
309
|
+
* by its min/max tile coordinates and is inclusive of coordinates.
|
|
310
|
+
*/
|
|
311
|
+
var TileRange = /** @class */ (function () {
|
|
312
|
+
/**
|
|
313
|
+
* @param {number} minX Minimum X.
|
|
314
|
+
* @param {number} maxX Maximum X.
|
|
315
|
+
* @param {number} minY Minimum Y.
|
|
316
|
+
* @param {number} maxY Maximum Y.
|
|
317
|
+
*/
|
|
318
|
+
function TileRange(minX, maxX, minY, maxY) {
|
|
319
|
+
/**
|
|
320
|
+
* @type {number}
|
|
321
|
+
*/
|
|
322
|
+
this.minX = minX;
|
|
323
|
+
/**
|
|
324
|
+
* @type {number}
|
|
325
|
+
*/
|
|
326
|
+
this.maxX = maxX;
|
|
327
|
+
/**
|
|
328
|
+
* @type {number}
|
|
329
|
+
*/
|
|
330
|
+
this.minY = minY;
|
|
331
|
+
/**
|
|
332
|
+
* @type {number}
|
|
333
|
+
*/
|
|
334
|
+
this.maxY = maxY;
|
|
335
|
+
}
|
|
336
|
+
/**
|
|
337
|
+
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile coordinate.
|
|
338
|
+
* @return {boolean} Contains tile coordinate.
|
|
339
|
+
*/
|
|
340
|
+
TileRange.prototype.contains = function (tileCoord) {
|
|
341
|
+
return this.containsXY(tileCoord[1], tileCoord[2]);
|
|
342
|
+
};
|
|
343
|
+
/**
|
|
344
|
+
* @param {TileRange} tileRange Tile range.
|
|
345
|
+
* @return {boolean} Contains.
|
|
346
|
+
*/
|
|
347
|
+
TileRange.prototype.containsTileRange = function (tileRange) {
|
|
348
|
+
return (this.minX <= tileRange.minX &&
|
|
349
|
+
tileRange.maxX <= this.maxX &&
|
|
350
|
+
this.minY <= tileRange.minY &&
|
|
351
|
+
tileRange.maxY <= this.maxY);
|
|
352
|
+
};
|
|
353
|
+
/**
|
|
354
|
+
* @param {number} x Tile coordinate x.
|
|
355
|
+
* @param {number} y Tile coordinate y.
|
|
356
|
+
* @return {boolean} Contains coordinate.
|
|
357
|
+
*/
|
|
358
|
+
TileRange.prototype.containsXY = function (x, y) {
|
|
359
|
+
return this.minX <= x && x <= this.maxX && this.minY <= y && y <= this.maxY;
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* @param {TileRange} tileRange Tile range.
|
|
363
|
+
* @return {boolean} Equals.
|
|
364
|
+
*/
|
|
365
|
+
TileRange.prototype.equals = function (tileRange) {
|
|
366
|
+
return (this.minX == tileRange.minX &&
|
|
367
|
+
this.minY == tileRange.minY &&
|
|
368
|
+
this.maxX == tileRange.maxX &&
|
|
369
|
+
this.maxY == tileRange.maxY);
|
|
370
|
+
};
|
|
371
|
+
/**
|
|
372
|
+
* @param {TileRange} tileRange Tile range.
|
|
373
|
+
*/
|
|
374
|
+
TileRange.prototype.extend = function (tileRange) {
|
|
375
|
+
if (tileRange.minX < this.minX) {
|
|
376
|
+
this.minX = tileRange.minX;
|
|
377
|
+
}
|
|
378
|
+
if (tileRange.maxX > this.maxX) {
|
|
379
|
+
this.maxX = tileRange.maxX;
|
|
380
|
+
}
|
|
381
|
+
if (tileRange.minY < this.minY) {
|
|
382
|
+
this.minY = tileRange.minY;
|
|
383
|
+
}
|
|
384
|
+
if (tileRange.maxY > this.maxY) {
|
|
385
|
+
this.maxY = tileRange.maxY;
|
|
386
|
+
}
|
|
387
|
+
};
|
|
388
|
+
/**
|
|
389
|
+
* @return {number} Height.
|
|
390
|
+
*/
|
|
391
|
+
TileRange.prototype.getHeight = function () {
|
|
392
|
+
return this.maxY - this.minY + 1;
|
|
393
|
+
};
|
|
394
|
+
/**
|
|
395
|
+
* @return {import("./size.js").Size} Size.
|
|
396
|
+
*/
|
|
397
|
+
TileRange.prototype.getSize = function () {
|
|
398
|
+
return [this.getWidth(), this.getHeight()];
|
|
399
|
+
};
|
|
400
|
+
/**
|
|
401
|
+
* @return {number} Width.
|
|
402
|
+
*/
|
|
403
|
+
TileRange.prototype.getWidth = function () {
|
|
404
|
+
return this.maxX - this.minX + 1;
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* @param {TileRange} tileRange Tile range.
|
|
408
|
+
* @return {boolean} Intersects.
|
|
409
|
+
*/
|
|
410
|
+
TileRange.prototype.intersects = function (tileRange) {
|
|
411
|
+
return (this.minX <= tileRange.maxX &&
|
|
412
|
+
this.maxX >= tileRange.minX &&
|
|
413
|
+
this.minY <= tileRange.maxY &&
|
|
414
|
+
this.maxY >= tileRange.minY);
|
|
415
|
+
};
|
|
416
|
+
return TileRange;
|
|
417
|
+
}());
|
|
418
|
+
/**
|
|
419
|
+
* @param {number} minX Minimum X.
|
|
420
|
+
* @param {number} maxX Maximum X.
|
|
421
|
+
* @param {number} minY Minimum Y.
|
|
422
|
+
* @param {number} maxY Maximum Y.
|
|
423
|
+
* @param {TileRange} [tileRange] TileRange.
|
|
424
|
+
* @return {TileRange} Tile range.
|
|
425
|
+
*/
|
|
426
|
+
function createOrUpdate(minX, maxX, minY, maxY, tileRange) {
|
|
427
|
+
if (tileRange !== undefined) {
|
|
428
|
+
tileRange.minX = minX;
|
|
429
|
+
tileRange.maxX = maxX;
|
|
430
|
+
tileRange.minY = minY;
|
|
431
|
+
tileRange.maxY = maxY;
|
|
432
|
+
return tileRange;
|
|
433
|
+
}
|
|
434
|
+
else {
|
|
435
|
+
return new TileRange(minX, maxX, minY, maxY);
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (TileRange);
|
|
439
|
+
//# sourceMappingURL=TileRange.js.map
|
|
440
|
+
|
|
441
|
+
/***/ }),
|
|
442
|
+
|
|
443
|
+
/***/ "./node_modules/ol/VectorRenderTile.js":
|
|
444
|
+
/*!*********************************************!*\
|
|
445
|
+
!*** ./node_modules/ol/VectorRenderTile.js ***!
|
|
446
|
+
\*********************************************/
|
|
447
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
448
|
+
|
|
449
|
+
__webpack_require__.r(__webpack_exports__);
|
|
450
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
451
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
452
|
+
/* harmony export */ });
|
|
453
|
+
/* harmony import */ var _Tile_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Tile.js */ "./node_modules/ol/Tile.js");
|
|
454
|
+
/* harmony import */ var _dom_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./dom.js */ "./node_modules/ol/dom.js");
|
|
455
|
+
/* harmony import */ var _util_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util.js */ "./node_modules/ol/util.js");
|
|
456
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
457
|
+
var extendStatics = function (d, b) {
|
|
458
|
+
extendStatics = Object.setPrototypeOf ||
|
|
459
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
460
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
461
|
+
return extendStatics(d, b);
|
|
462
|
+
};
|
|
463
|
+
return function (d, b) {
|
|
464
|
+
if (typeof b !== "function" && b !== null)
|
|
465
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
466
|
+
extendStatics(d, b);
|
|
467
|
+
function __() { this.constructor = d; }
|
|
468
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
469
|
+
};
|
|
470
|
+
})();
|
|
471
|
+
/**
|
|
472
|
+
* @module ol/VectorRenderTile
|
|
473
|
+
*/
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
/**
|
|
478
|
+
* @typedef {Object} ReplayState
|
|
479
|
+
* @property {boolean} dirty Dirty.
|
|
480
|
+
* @property {null|import("./render.js").OrderFunction} renderedRenderOrder RenderedRenderOrder.
|
|
481
|
+
* @property {number} renderedTileRevision RenderedTileRevision.
|
|
482
|
+
* @property {number} renderedResolution RenderedResolution.
|
|
483
|
+
* @property {number} renderedRevision RenderedRevision.
|
|
484
|
+
* @property {number} renderedTileResolution RenderedTileResolution.
|
|
485
|
+
* @property {number} renderedTileZ RenderedTileZ.
|
|
486
|
+
*/
|
|
487
|
+
/**
|
|
488
|
+
* @type {Array<HTMLCanvasElement>}
|
|
489
|
+
*/
|
|
490
|
+
var canvasPool = [];
|
|
491
|
+
var VectorRenderTile = /** @class */ (function (_super) {
|
|
492
|
+
__extends(VectorRenderTile, _super);
|
|
493
|
+
/**
|
|
494
|
+
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile coordinate.
|
|
495
|
+
* @param {import("./TileState.js").default} state State.
|
|
496
|
+
* @param {import("./tilecoord.js").TileCoord} urlTileCoord Wrapped tile coordinate for source urls.
|
|
497
|
+
* @param {function(VectorRenderTile):Array<import("./VectorTile").default>} getSourceTiles Function
|
|
498
|
+
* to get source tiles for this tile.
|
|
499
|
+
*/
|
|
500
|
+
function VectorRenderTile(tileCoord, state, urlTileCoord, getSourceTiles) {
|
|
501
|
+
var _this = _super.call(this, tileCoord, state, { transition: 0 }) || this;
|
|
502
|
+
/**
|
|
503
|
+
* @private
|
|
504
|
+
* @type {!Object<string, CanvasRenderingContext2D>}
|
|
505
|
+
*/
|
|
506
|
+
_this.context_ = {};
|
|
507
|
+
/**
|
|
508
|
+
* Executor groups by layer uid. Entries are read/written by the renderer.
|
|
509
|
+
* @type {Object<string, Array<import("./render/canvas/ExecutorGroup.js").default>>}
|
|
510
|
+
*/
|
|
511
|
+
_this.executorGroups = {};
|
|
512
|
+
/**
|
|
513
|
+
* Executor groups for decluttering, by layer uid. Entries are read/written by the renderer.
|
|
514
|
+
* @type {Object<string, Array<import("./render/canvas/ExecutorGroup.js").default>>}
|
|
515
|
+
*/
|
|
516
|
+
_this.declutterExecutorGroups = {};
|
|
517
|
+
/**
|
|
518
|
+
* Number of loading source tiles. Read/written by the source.
|
|
519
|
+
* @type {number}
|
|
520
|
+
*/
|
|
521
|
+
_this.loadingSourceTiles = 0;
|
|
522
|
+
/**
|
|
523
|
+
* @type {Object<number, ImageData>}
|
|
524
|
+
*/
|
|
525
|
+
_this.hitDetectionImageData = {};
|
|
526
|
+
/**
|
|
527
|
+
* @private
|
|
528
|
+
* @type {!Object<string, ReplayState>}
|
|
529
|
+
*/
|
|
530
|
+
_this.replayState_ = {};
|
|
531
|
+
/**
|
|
532
|
+
* @type {Array<import("./VectorTile.js").default>}
|
|
533
|
+
*/
|
|
534
|
+
_this.sourceTiles = [];
|
|
535
|
+
/**
|
|
536
|
+
* @type {Object<string, boolean>}
|
|
537
|
+
*/
|
|
538
|
+
_this.errorTileKeys = {};
|
|
539
|
+
/**
|
|
540
|
+
* @type {number}
|
|
541
|
+
*/
|
|
542
|
+
_this.wantedResolution;
|
|
543
|
+
/**
|
|
544
|
+
* @type {!function():Array<import("./VectorTile.js").default>}
|
|
545
|
+
*/
|
|
546
|
+
_this.getSourceTiles = getSourceTiles.bind(undefined, _this);
|
|
547
|
+
/**
|
|
548
|
+
* @type {import("./tilecoord.js").TileCoord}
|
|
549
|
+
*/
|
|
550
|
+
_this.wrappedTileCoord = urlTileCoord;
|
|
551
|
+
return _this;
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* @param {import("./layer/Layer.js").default} layer Layer.
|
|
555
|
+
* @return {CanvasRenderingContext2D} The rendering context.
|
|
556
|
+
*/
|
|
557
|
+
VectorRenderTile.prototype.getContext = function (layer) {
|
|
558
|
+
var key = (0,_util_js__WEBPACK_IMPORTED_MODULE_0__.getUid)(layer);
|
|
559
|
+
if (!(key in this.context_)) {
|
|
560
|
+
this.context_[key] = (0,_dom_js__WEBPACK_IMPORTED_MODULE_1__.createCanvasContext2D)(1, 1, canvasPool);
|
|
561
|
+
}
|
|
562
|
+
return this.context_[key];
|
|
563
|
+
};
|
|
564
|
+
/**
|
|
565
|
+
* @param {import("./layer/Layer.js").default} layer Layer.
|
|
566
|
+
* @return {boolean} Tile has a rendering context for the given layer.
|
|
567
|
+
*/
|
|
568
|
+
VectorRenderTile.prototype.hasContext = function (layer) {
|
|
569
|
+
return (0,_util_js__WEBPACK_IMPORTED_MODULE_0__.getUid)(layer) in this.context_;
|
|
570
|
+
};
|
|
571
|
+
/**
|
|
572
|
+
* Get the Canvas for this tile.
|
|
573
|
+
* @param {import("./layer/Layer.js").default} layer Layer.
|
|
574
|
+
* @return {HTMLCanvasElement} Canvas.
|
|
575
|
+
*/
|
|
576
|
+
VectorRenderTile.prototype.getImage = function (layer) {
|
|
577
|
+
return this.hasContext(layer) ? this.getContext(layer).canvas : null;
|
|
578
|
+
};
|
|
579
|
+
/**
|
|
580
|
+
* @param {import("./layer/Layer.js").default} layer Layer.
|
|
581
|
+
* @return {ReplayState} The replay state.
|
|
582
|
+
*/
|
|
583
|
+
VectorRenderTile.prototype.getReplayState = function (layer) {
|
|
584
|
+
var key = (0,_util_js__WEBPACK_IMPORTED_MODULE_0__.getUid)(layer);
|
|
585
|
+
if (!(key in this.replayState_)) {
|
|
586
|
+
this.replayState_[key] = {
|
|
587
|
+
dirty: false,
|
|
588
|
+
renderedRenderOrder: null,
|
|
589
|
+
renderedResolution: NaN,
|
|
590
|
+
renderedRevision: -1,
|
|
591
|
+
renderedTileResolution: NaN,
|
|
592
|
+
renderedTileRevision: -1,
|
|
593
|
+
renderedTileZ: -1,
|
|
594
|
+
};
|
|
595
|
+
}
|
|
596
|
+
return this.replayState_[key];
|
|
597
|
+
};
|
|
598
|
+
/**
|
|
599
|
+
* Load the tile.
|
|
600
|
+
*/
|
|
601
|
+
VectorRenderTile.prototype.load = function () {
|
|
602
|
+
this.getSourceTiles();
|
|
603
|
+
};
|
|
604
|
+
/**
|
|
605
|
+
* Remove from the cache due to expiry
|
|
606
|
+
*/
|
|
607
|
+
VectorRenderTile.prototype.release = function () {
|
|
608
|
+
for (var key in this.context_) {
|
|
609
|
+
canvasPool.push(this.context_[key].canvas);
|
|
610
|
+
delete this.context_[key];
|
|
611
|
+
}
|
|
612
|
+
_super.prototype.release.call(this);
|
|
613
|
+
};
|
|
614
|
+
return VectorRenderTile;
|
|
615
|
+
}(_Tile_js__WEBPACK_IMPORTED_MODULE_2__["default"]));
|
|
616
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (VectorRenderTile);
|
|
617
|
+
//# sourceMappingURL=VectorRenderTile.js.map
|
|
618
|
+
|
|
619
|
+
/***/ }),
|
|
620
|
+
|
|
621
|
+
/***/ "./node_modules/ol/VectorTile.js":
|
|
622
|
+
/*!***************************************!*\
|
|
623
|
+
!*** ./node_modules/ol/VectorTile.js ***!
|
|
624
|
+
\***************************************/
|
|
625
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
626
|
+
|
|
627
|
+
__webpack_require__.r(__webpack_exports__);
|
|
628
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
629
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
630
|
+
/* harmony export */ });
|
|
631
|
+
/* harmony import */ var _Tile_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Tile.js */ "./node_modules/ol/Tile.js");
|
|
632
|
+
/* harmony import */ var _TileState_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TileState.js */ "./node_modules/ol/TileState.js");
|
|
633
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
634
|
+
var extendStatics = function (d, b) {
|
|
635
|
+
extendStatics = Object.setPrototypeOf ||
|
|
636
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
637
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
638
|
+
return extendStatics(d, b);
|
|
639
|
+
};
|
|
640
|
+
return function (d, b) {
|
|
641
|
+
if (typeof b !== "function" && b !== null)
|
|
642
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
643
|
+
extendStatics(d, b);
|
|
644
|
+
function __() { this.constructor = d; }
|
|
645
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
646
|
+
};
|
|
647
|
+
})();
|
|
648
|
+
/**
|
|
649
|
+
* @module ol/VectorTile
|
|
650
|
+
*/
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
var VectorTile = /** @class */ (function (_super) {
|
|
654
|
+
__extends(VectorTile, _super);
|
|
655
|
+
/**
|
|
656
|
+
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile coordinate.
|
|
657
|
+
* @param {import("./TileState.js").default} state State.
|
|
658
|
+
* @param {string} src Data source url.
|
|
659
|
+
* @param {import("./format/Feature.js").default} format Feature format.
|
|
660
|
+
* @param {import("./Tile.js").LoadFunction} tileLoadFunction Tile load function.
|
|
661
|
+
* @param {import("./Tile.js").Options} [opt_options] Tile options.
|
|
662
|
+
*/
|
|
663
|
+
function VectorTile(tileCoord, state, src, format, tileLoadFunction, opt_options) {
|
|
664
|
+
var _this = _super.call(this, tileCoord, state, opt_options) || this;
|
|
665
|
+
/**
|
|
666
|
+
* Extent of this tile; set by the source.
|
|
667
|
+
* @type {import("./extent.js").Extent}
|
|
668
|
+
*/
|
|
669
|
+
_this.extent = null;
|
|
670
|
+
/**
|
|
671
|
+
* @private
|
|
672
|
+
* @type {import("./format/Feature.js").default}
|
|
673
|
+
*/
|
|
674
|
+
_this.format_ = format;
|
|
675
|
+
/**
|
|
676
|
+
* @private
|
|
677
|
+
* @type {Array<import("./Feature.js").default>}
|
|
678
|
+
*/
|
|
679
|
+
_this.features_ = null;
|
|
680
|
+
/**
|
|
681
|
+
* @private
|
|
682
|
+
* @type {import("./featureloader.js").FeatureLoader}
|
|
683
|
+
*/
|
|
684
|
+
_this.loader_;
|
|
685
|
+
/**
|
|
686
|
+
* Feature projection of this tile; set by the source.
|
|
687
|
+
* @type {import("./proj/Projection.js").default}
|
|
688
|
+
*/
|
|
689
|
+
_this.projection = null;
|
|
690
|
+
/**
|
|
691
|
+
* Resolution of this tile; set by the source.
|
|
692
|
+
* @type {number}
|
|
693
|
+
*/
|
|
694
|
+
_this.resolution;
|
|
695
|
+
/**
|
|
696
|
+
* @private
|
|
697
|
+
* @type {import("./Tile.js").LoadFunction}
|
|
698
|
+
*/
|
|
699
|
+
_this.tileLoadFunction_ = tileLoadFunction;
|
|
700
|
+
/**
|
|
701
|
+
* @private
|
|
702
|
+
* @type {string}
|
|
703
|
+
*/
|
|
704
|
+
_this.url_ = src;
|
|
705
|
+
_this.key = src;
|
|
706
|
+
return _this;
|
|
707
|
+
}
|
|
708
|
+
/**
|
|
709
|
+
* Get the feature format assigned for reading this tile's features.
|
|
710
|
+
* @return {import("./format/Feature.js").default} Feature format.
|
|
711
|
+
* @api
|
|
712
|
+
*/
|
|
713
|
+
VectorTile.prototype.getFormat = function () {
|
|
714
|
+
return this.format_;
|
|
715
|
+
};
|
|
716
|
+
/**
|
|
717
|
+
* Get the features for this tile. Geometries will be in the view projection.
|
|
718
|
+
* @return {Array<import("./Feature.js").FeatureLike>} Features.
|
|
719
|
+
* @api
|
|
720
|
+
*/
|
|
721
|
+
VectorTile.prototype.getFeatures = function () {
|
|
722
|
+
return this.features_;
|
|
723
|
+
};
|
|
724
|
+
/**
|
|
725
|
+
* Load not yet loaded URI.
|
|
726
|
+
*/
|
|
727
|
+
VectorTile.prototype.load = function () {
|
|
728
|
+
if (this.state == _TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].IDLE) {
|
|
729
|
+
this.setState(_TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADING);
|
|
730
|
+
this.tileLoadFunction_(this, this.url_);
|
|
731
|
+
if (this.loader_) {
|
|
732
|
+
this.loader_(this.extent, this.resolution, this.projection);
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
};
|
|
736
|
+
/**
|
|
737
|
+
* Handler for successful tile load.
|
|
738
|
+
* @param {Array<import("./Feature.js").default>} features The loaded features.
|
|
739
|
+
* @param {import("./proj/Projection.js").default} dataProjection Data projection.
|
|
740
|
+
*/
|
|
741
|
+
VectorTile.prototype.onLoad = function (features, dataProjection) {
|
|
742
|
+
this.setFeatures(features);
|
|
743
|
+
};
|
|
744
|
+
/**
|
|
745
|
+
* Handler for tile load errors.
|
|
746
|
+
*/
|
|
747
|
+
VectorTile.prototype.onError = function () {
|
|
748
|
+
this.setState(_TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].ERROR);
|
|
749
|
+
};
|
|
750
|
+
/**
|
|
751
|
+
* Function for use in an {@link module:ol/source/VectorTile~VectorTile}'s `tileLoadFunction`.
|
|
752
|
+
* Sets the features for the tile.
|
|
753
|
+
* @param {Array<import("./Feature.js").default>} features Features.
|
|
754
|
+
* @api
|
|
755
|
+
*/
|
|
756
|
+
VectorTile.prototype.setFeatures = function (features) {
|
|
757
|
+
this.features_ = features;
|
|
758
|
+
this.setState(_TileState_js__WEBPACK_IMPORTED_MODULE_0__["default"].LOADED);
|
|
759
|
+
};
|
|
760
|
+
/**
|
|
761
|
+
* Set the feature loader for reading this tile's features.
|
|
762
|
+
* @param {import("./featureloader.js").FeatureLoader} loader Feature loader.
|
|
763
|
+
* @api
|
|
764
|
+
*/
|
|
765
|
+
VectorTile.prototype.setLoader = function (loader) {
|
|
766
|
+
this.loader_ = loader;
|
|
767
|
+
};
|
|
768
|
+
return VectorTile;
|
|
769
|
+
}(_Tile_js__WEBPACK_IMPORTED_MODULE_1__["default"]));
|
|
770
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (VectorTile);
|
|
771
|
+
//# sourceMappingURL=VectorTile.js.map
|
|
772
|
+
|
|
773
|
+
/***/ }),
|
|
774
|
+
|
|
775
|
+
/***/ "./node_modules/ol/index.js":
|
|
776
|
+
/*!**********************************!*\
|
|
777
|
+
!*** ./node_modules/ol/index.js ***!
|
|
778
|
+
\**********************************/
|
|
779
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
780
|
+
|
|
781
|
+
__webpack_require__.r(__webpack_exports__);
|
|
782
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
783
|
+
/* harmony export */ "AssertionError": () => (/* reexport safe */ _AssertionError_js__WEBPACK_IMPORTED_MODULE_0__["default"]),
|
|
784
|
+
/* harmony export */ "Collection": () => (/* reexport safe */ _Collection_js__WEBPACK_IMPORTED_MODULE_1__["default"]),
|
|
785
|
+
/* harmony export */ "Disposable": () => (/* reexport safe */ _Disposable_js__WEBPACK_IMPORTED_MODULE_2__["default"]),
|
|
786
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _Feature_js__WEBPACK_IMPORTED_MODULE_3__["default"]),
|
|
787
|
+
/* harmony export */ "Geolocation": () => (/* reexport safe */ _Geolocation_js__WEBPACK_IMPORTED_MODULE_4__["default"]),
|
|
788
|
+
/* harmony export */ "Graticule": () => (/* reexport safe */ _layer_Graticule_js__WEBPACK_IMPORTED_MODULE_5__["default"]),
|
|
789
|
+
/* harmony export */ "Image": () => (/* reexport safe */ _Image_js__WEBPACK_IMPORTED_MODULE_6__["default"]),
|
|
790
|
+
/* harmony export */ "ImageBase": () => (/* reexport safe */ _ImageBase_js__WEBPACK_IMPORTED_MODULE_7__["default"]),
|
|
791
|
+
/* harmony export */ "ImageCanvas": () => (/* reexport safe */ _ImageCanvas_js__WEBPACK_IMPORTED_MODULE_8__["default"]),
|
|
792
|
+
/* harmony export */ "ImageTile": () => (/* reexport safe */ _ImageTile_js__WEBPACK_IMPORTED_MODULE_9__["default"]),
|
|
793
|
+
/* harmony export */ "Kinetic": () => (/* reexport safe */ _Kinetic_js__WEBPACK_IMPORTED_MODULE_10__["default"]),
|
|
794
|
+
/* harmony export */ "Map": () => (/* reexport safe */ _Map_js__WEBPACK_IMPORTED_MODULE_11__["default"]),
|
|
795
|
+
/* harmony export */ "MapBrowserEvent": () => (/* reexport safe */ _MapBrowserEvent_js__WEBPACK_IMPORTED_MODULE_12__["default"]),
|
|
796
|
+
/* harmony export */ "MapBrowserEventHandler": () => (/* reexport safe */ _MapBrowserEventHandler_js__WEBPACK_IMPORTED_MODULE_13__["default"]),
|
|
797
|
+
/* harmony export */ "MapEvent": () => (/* reexport safe */ _MapEvent_js__WEBPACK_IMPORTED_MODULE_14__["default"]),
|
|
798
|
+
/* harmony export */ "Object": () => (/* reexport safe */ _Object_js__WEBPACK_IMPORTED_MODULE_15__["default"]),
|
|
799
|
+
/* harmony export */ "Observable": () => (/* reexport safe */ _Observable_js__WEBPACK_IMPORTED_MODULE_16__["default"]),
|
|
800
|
+
/* harmony export */ "Overlay": () => (/* reexport safe */ _Overlay_js__WEBPACK_IMPORTED_MODULE_17__["default"]),
|
|
801
|
+
/* harmony export */ "PluggableMap": () => (/* reexport safe */ _PluggableMap_js__WEBPACK_IMPORTED_MODULE_18__["default"]),
|
|
802
|
+
/* harmony export */ "Tile": () => (/* reexport safe */ _Tile_js__WEBPACK_IMPORTED_MODULE_19__["default"]),
|
|
803
|
+
/* harmony export */ "TileCache": () => (/* reexport safe */ _TileCache_js__WEBPACK_IMPORTED_MODULE_20__["default"]),
|
|
804
|
+
/* harmony export */ "TileQueue": () => (/* reexport safe */ _TileQueue_js__WEBPACK_IMPORTED_MODULE_21__["default"]),
|
|
805
|
+
/* harmony export */ "TileRange": () => (/* reexport safe */ _TileRange_js__WEBPACK_IMPORTED_MODULE_22__["default"]),
|
|
806
|
+
/* harmony export */ "VERSION": () => (/* reexport safe */ _util_js__WEBPACK_IMPORTED_MODULE_26__.VERSION),
|
|
807
|
+
/* harmony export */ "VectorRenderTile": () => (/* reexport safe */ _VectorRenderTile_js__WEBPACK_IMPORTED_MODULE_23__["default"]),
|
|
808
|
+
/* harmony export */ "VectorTile": () => (/* reexport safe */ _VectorTile_js__WEBPACK_IMPORTED_MODULE_24__["default"]),
|
|
809
|
+
/* harmony export */ "View": () => (/* reexport safe */ _View_js__WEBPACK_IMPORTED_MODULE_25__["default"]),
|
|
810
|
+
/* harmony export */ "getUid": () => (/* reexport safe */ _util_js__WEBPACK_IMPORTED_MODULE_26__.getUid)
|
|
811
|
+
/* harmony export */ });
|
|
812
|
+
/* harmony import */ var _AssertionError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AssertionError.js */ "./node_modules/ol/AssertionError.js");
|
|
813
|
+
/* harmony import */ var _Collection_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Collection.js */ "./node_modules/ol/Collection.js");
|
|
814
|
+
/* harmony import */ var _Disposable_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Disposable.js */ "./node_modules/ol/Disposable.js");
|
|
815
|
+
/* harmony import */ var _Feature_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Feature.js */ "./node_modules/ol/Feature.js");
|
|
816
|
+
/* harmony import */ var _Geolocation_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Geolocation.js */ "./node_modules/ol/Geolocation.js");
|
|
817
|
+
/* harmony import */ var _layer_Graticule_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./layer/Graticule.js */ "./node_modules/ol/layer/Graticule.js");
|
|
818
|
+
/* harmony import */ var _Image_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Image.js */ "./node_modules/ol/Image.js");
|
|
819
|
+
/* harmony import */ var _ImageBase_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ImageBase.js */ "./node_modules/ol/ImageBase.js");
|
|
820
|
+
/* harmony import */ var _ImageCanvas_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ImageCanvas.js */ "./node_modules/ol/ImageCanvas.js");
|
|
821
|
+
/* harmony import */ var _ImageTile_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ImageTile.js */ "./node_modules/ol/ImageTile.js");
|
|
822
|
+
/* harmony import */ var _Kinetic_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./Kinetic.js */ "./node_modules/ol/Kinetic.js");
|
|
823
|
+
/* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Map.js */ "./node_modules/ol/Map.js");
|
|
824
|
+
/* harmony import */ var _MapBrowserEvent_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./MapBrowserEvent.js */ "./node_modules/ol/MapBrowserEvent.js");
|
|
825
|
+
/* harmony import */ var _MapBrowserEventHandler_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./MapBrowserEventHandler.js */ "./node_modules/ol/MapBrowserEventHandler.js");
|
|
826
|
+
/* harmony import */ var _MapEvent_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./MapEvent.js */ "./node_modules/ol/MapEvent.js");
|
|
827
|
+
/* harmony import */ var _Object_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./Object.js */ "./node_modules/ol/Object.js");
|
|
828
|
+
/* harmony import */ var _Observable_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./Observable.js */ "./node_modules/ol/Observable.js");
|
|
829
|
+
/* harmony import */ var _Overlay_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./Overlay.js */ "./node_modules/ol/Overlay.js");
|
|
830
|
+
/* harmony import */ var _PluggableMap_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./PluggableMap.js */ "./node_modules/ol/PluggableMap.js");
|
|
831
|
+
/* harmony import */ var _Tile_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./Tile.js */ "./node_modules/ol/Tile.js");
|
|
832
|
+
/* harmony import */ var _TileCache_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./TileCache.js */ "./node_modules/ol/TileCache.js");
|
|
833
|
+
/* harmony import */ var _TileQueue_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./TileQueue.js */ "./node_modules/ol/TileQueue.js");
|
|
834
|
+
/* harmony import */ var _TileRange_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./TileRange.js */ "./node_modules/ol/TileRange.js");
|
|
835
|
+
/* harmony import */ var _VectorRenderTile_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./VectorRenderTile.js */ "./node_modules/ol/VectorRenderTile.js");
|
|
836
|
+
/* harmony import */ var _VectorTile_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./VectorTile.js */ "./node_modules/ol/VectorTile.js");
|
|
837
|
+
/* harmony import */ var _View_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./View.js */ "./node_modules/ol/View.js");
|
|
838
|
+
/* harmony import */ var _util_js__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./util.js */ "./node_modules/ol/util.js");
|
|
839
|
+
/**
|
|
840
|
+
* @module ol
|
|
841
|
+
*/
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
//# sourceMappingURL=index.js.map
|
|
870
|
+
|
|
871
|
+
/***/ })
|
|
872
|
+
|
|
873
|
+
}])
|
|
874
|
+
//# sourceMappingURL=vendors-node_modules_ol_index_js.js.map
|