Updates for right click to include lat lon, and 3d direction handlilng
This commit is contained in:
parent
698bb517d8
commit
27deece616
@ -1,5 +1,7 @@
|
|||||||
### Change Log for Node-RED Worldmap
|
### Change Log for Node-RED Worldmap
|
||||||
|
|
||||||
|
- v2.8.3 - Let feedback include lat lon for context menu on general map.
|
||||||
|
- v2.8.2 - Improve direction handling of 3d objects.
|
||||||
- v2.8.1 - Fix old tracks re-appearing afer hide/show. Issue #135
|
- v2.8.1 - Fix old tracks re-appearing afer hide/show. Issue #135
|
||||||
- v2.8.0 - Align vector with `track`, prioritise hdg and heading over bearing. Add old location to move action.
|
- v2.8.0 - Align vector with `track`, prioritise hdg and heading over bearing. Add old location to move action.
|
||||||
- v2.7.1 - Also allow geojson files to be dropped, and better png handling
|
- v2.7.1 - Also allow geojson files to be dropped, and better png handling
|
||||||
|
@ -11,6 +11,8 @@ map web page for plotting "things" on.
|
|||||||
|
|
||||||
### Updates
|
### Updates
|
||||||
|
|
||||||
|
- v2.8.3 - Let feedback include lat lon for context menu on general map.
|
||||||
|
- v2.8.2 - Improve direction handling of 3d objects.
|
||||||
- v2.8.1 - Fix old tracks re-appearing afer hide/show. Issue #135
|
- v2.8.1 - Fix old tracks re-appearing afer hide/show. Issue #135
|
||||||
- v2.8.0 - Align vector with `track`, prioritise hdg and heading over bearing. Add old location to move action.
|
- v2.8.0 - Align vector with `track`, prioritise hdg and heading over bearing. Add old location to move action.
|
||||||
- v2.7.1 - Also allow geojson files to be dropped, and better png handling
|
- v2.7.1 - Also allow geojson files to be dropped, and better png handling
|
||||||
|
@ -673,7 +673,7 @@ var feedback = function(n,v,a,c) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (n === undefined) { n = "map"; }
|
if (n === undefined) { n = "map"; }
|
||||||
ws.send(JSON.stringify({action:a||"feedback", name:n, value:v}));
|
ws.send(JSON.stringify({action:a||"feedback", name:n, value:v, lat:rclk.lat, lon:rclk.lng,}));
|
||||||
}
|
}
|
||||||
if (c === true) { map.closePopup(); }
|
if (c === true) { map.closePopup(); }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user