@abi-software/flatmap-viewer 2.5.3 → 2.5.4
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/README.rst +1 -1
- package/package.json +1 -1
- package/src/flatmap-viewer.js +1 -1
- package/src/interactions.js +1 -1
package/README.rst
CHANGED
|
@@ -38,7 +38,7 @@ The map server endpoint is specified as ``MAP_ENDPOINT`` in ``src/main.js``. It
|
|
|
38
38
|
Package Installation
|
|
39
39
|
====================
|
|
40
40
|
|
|
41
|
-
* ``npm install @abi-software/flatmap-viewer@2.5.
|
|
41
|
+
* ``npm install @abi-software/flatmap-viewer@2.5.4``
|
|
42
42
|
|
|
43
43
|
Documentation
|
|
44
44
|
-------------
|
package/package.json
CHANGED
package/src/flatmap-viewer.js
CHANGED
|
@@ -1140,7 +1140,7 @@ class FlatMap
|
|
|
1140
1140
|
//=======================================
|
|
1141
1141
|
{
|
|
1142
1142
|
if (this._userInteractions) {
|
|
1143
|
-
this._userInteractions.refreshAnnotationFeatureGeometry(feature)
|
|
1143
|
+
return this._userInteractions.refreshAnnotationFeatureGeometry(feature)
|
|
1144
1144
|
}
|
|
1145
1145
|
}
|
|
1146
1146
|
|
package/src/interactions.js
CHANGED
|
@@ -354,7 +354,7 @@ export class UserInteractions
|
|
|
354
354
|
//=======================================
|
|
355
355
|
{
|
|
356
356
|
if (this.#annotationDrawControl) {
|
|
357
|
-
this.#annotationDrawControl.refreshGeometry(feature)
|
|
357
|
+
return this.#annotationDrawControl.refreshGeometry(feature)
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
|