@geode/opengeodeweb-front 2.0.0-rc.4 → 2.0.0-rc.5
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/package.json +1 -1
- package/stores/viewer.js +1 -1
package/package.json
CHANGED
package/stores/viewer.js
CHANGED
|
@@ -10,7 +10,7 @@ export const use_viewer_store = defineStore('viewer', {
|
|
|
10
10
|
this.picking_mode = value
|
|
11
11
|
},
|
|
12
12
|
async set_picked_point (x, y) {
|
|
13
|
-
const response = await get_point_position({ x, y })
|
|
13
|
+
const response = await this.get_point_position({ x, y })
|
|
14
14
|
const { x: world_x, y: world_y } = response
|
|
15
15
|
this.picked_point.x = world_x
|
|
16
16
|
this.picked_point.y = world_y
|