drone_view 2.3.8 → 3.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/dist/droneView.js +1 -1
- package/package.json +1 -1
- package/public/index.html +9 -8
package/package.json
CHANGED
package/public/index.html
CHANGED
@@ -146,7 +146,7 @@
|
|
146
146
|
[6.1628706023275495, 48.6080989685312, 2.813801646136673],
|
147
147
|
[6.162842533195286, 48.608087438688024, 3.882614197318671]
|
148
148
|
],
|
149
|
-
properties: { id: "as1", color: "#00ff00", label: "
|
149
|
+
properties: { id: "as1", color: "#00ff00", label: "testing1", clamp: false },
|
150
150
|
},
|
151
151
|
{
|
152
152
|
points: [
|
@@ -156,7 +156,7 @@
|
|
156
156
|
[6.163004594883557, 48.60819004647759, 6.73241478412424],
|
157
157
|
[6.1629555793978605, 48.60819920247807, 6.799143351030009]
|
158
158
|
],
|
159
|
-
properties: { id: "as1", color: "#00ff00", label: "
|
159
|
+
properties: { id: "as1", color: "#00ff00", label: "testing3", clamp: false },
|
160
160
|
},
|
161
161
|
];
|
162
162
|
|
@@ -396,7 +396,8 @@
|
|
396
396
|
});
|
397
397
|
|
398
398
|
document.getElementById("getCenter").addEventListener("click", () => {
|
399
|
-
projectCenter = viewer.getCenter();
|
399
|
+
// projectCenter = viewer.getCenter();
|
400
|
+
viewer.removeLayer("editPolygon", "polygon-edit-layer")
|
400
401
|
});
|
401
402
|
|
402
403
|
document.getElementById("setCenter").addEventListener("click", () => {
|
@@ -477,11 +478,11 @@
|
|
477
478
|
});
|
478
479
|
|
479
480
|
// Load Height Graph
|
480
|
-
viewer.addLayer("line", "line-layer", line, {
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
});
|
481
|
+
// viewer.addLayer("line", "line-layer", line, {
|
482
|
+
// onClick: function (e) {
|
483
|
+
// console.log(e);
|
484
|
+
// },
|
485
|
+
// });
|
485
486
|
|
486
487
|
// Load Tag
|
487
488
|
viewer.addLayer("marker3d", "marker-layer", points, {
|