@vcmap/viewshed 3.0.3 → 4.0.0
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/CHANGELOG.md +10 -0
- package/dist/index.js +1076 -1078
- package/package.json +25 -24
- package/src/ViewshedConfigEditor.vue +32 -34
- package/src/ViewshedWindow.vue +152 -160
- package/src/{index.js → index.ts} +63 -68
- package/src/util/toolboxHelper.ts +183 -0
- package/src/util/{windowHelper.js → windowHelper.ts} +28 -27
- package/src/{viewshed.js → viewshed.ts} +159 -202
- package/src/{viewshedCategory.js → viewshedCategory.ts} +67 -60
- package/src/{viewshedInteraction.js → viewshedInteraction.ts} +20 -14
- package/src/{viewshedManager.js → viewshedManager.ts} +130 -97
- package/src/{viewshedPrimitive.js → viewshedPrimitive.ts} +34 -19
- package/src/util/toolboxHelper.js +0 -132
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# v4.0.0
|
|
2
|
+
|
|
3
|
+
- updates @vcmap/core and @vcmap/ui to 6.3
|
|
4
|
+
- refactor plugin code to TypeScript
|
|
5
|
+
- makes parameters editable with an inputfield
|
|
6
|
+
|
|
7
|
+
# v3.0.4
|
|
8
|
+
|
|
9
|
+
- fixes bug where setting a single tool in the configuration file would fail
|
|
10
|
+
|
|
1
11
|
# v3.0.3
|
|
2
12
|
|
|
3
13
|
- fixes bug where temporary viewsheds could not be created from state
|