@geode/opengeodeweb-viewer 1.0.0-rc.4 → 1.1.0-rc.1
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/schemas.json +26 -0
package/package.json
CHANGED
package/schemas.json
CHANGED
|
@@ -519,6 +519,32 @@
|
|
|
519
519
|
"required": [],
|
|
520
520
|
"additionalProperties": false
|
|
521
521
|
},
|
|
522
|
+
"picked_ids": {
|
|
523
|
+
"$id": "opengeodeweb_viewer.viewer.picked_ids",
|
|
524
|
+
"rpc": "picked_ids",
|
|
525
|
+
"schema": {
|
|
526
|
+
"type": "object",
|
|
527
|
+
"properties": {
|
|
528
|
+
"x": {
|
|
529
|
+
"type": "number"
|
|
530
|
+
},
|
|
531
|
+
"y": {
|
|
532
|
+
"type": "number"
|
|
533
|
+
},
|
|
534
|
+
"ids": {
|
|
535
|
+
"type": "array",
|
|
536
|
+
"items": {
|
|
537
|
+
"type": "string"
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"required": [
|
|
542
|
+
"x",
|
|
543
|
+
"y",
|
|
544
|
+
"ids"
|
|
545
|
+
]
|
|
546
|
+
}
|
|
547
|
+
},
|
|
522
548
|
"get_point_position": {
|
|
523
549
|
"$id": "opengeodeweb_viewer.viewer.get_point_position",
|
|
524
550
|
"rpc": "get_point_position",
|