ol 10.7.1-dev.1762286637579 → 10.7.1-dev.1763058336983

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.
@@ -301,7 +301,7 @@ class Link extends Interaction {
301
301
  return;
302
302
  }
303
303
  const view = map.getView();
304
- if (!view) {
304
+ if (!view || !view.isDef()) {
305
305
  return;
306
306
  }
307
307
 
@@ -421,7 +421,7 @@ class Link extends Interaction {
421
421
  return;
422
422
  }
423
423
  const view = map.getView();
424
- if (!view) {
424
+ if (!view || !view.isDef()) {
425
425
  return;
426
426
  }
427
427
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ol",
3
- "version": "10.7.1-dev.1762286637579",
3
+ "version": "10.7.1-dev.1763058336983",
4
4
  "description": "OpenLayers mapping library",
5
5
  "keywords": [
6
6
  "map",
package/util.js CHANGED
@@ -33,4 +33,4 @@ export function getUid(obj) {
33
33
  * OpenLayers version.
34
34
  * @type {string}
35
35
  */
36
- export const VERSION = '10.7.1-dev.1762286637579';
36
+ export const VERSION = '10.7.1-dev.1763058336983';