drone_view 2.2.4 → 2.2.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/dist/droneView.js +1 -1
- package/package.json +1 -1
- package/public/index.html +9 -0
package/package.json
CHANGED
package/public/index.html
CHANGED
@@ -488,6 +488,15 @@
|
|
488
488
|
onClick: function (e) {
|
489
489
|
debugger;
|
490
490
|
console.log("Printed")
|
491
|
+
},
|
492
|
+
onHover: function (e, eventObject) {
|
493
|
+
console.log("properties", e)
|
494
|
+
console.log("eventObject", eventObject)
|
495
|
+
console.log("Hovered on 3d")
|
496
|
+
},
|
497
|
+
clearHover: function (e) {
|
498
|
+
console.log("unhovered")
|
499
|
+
console.log(e);
|
491
500
|
}
|
492
501
|
});
|
493
502
|
});
|