1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 16:08:39 -05:00

Use shift modifier to place marker on 3D map

This commit is contained in:
Jon Beniston 2023-03-22 10:47:32 +00:00
parent 6e3795d3d0
commit 6d571a6015
3 changed files with 3 additions and 3 deletions

View File

@ -207,7 +207,7 @@ The airport ICAO (purple box) and runway (yellow box) can be entered in (11).
![ILS approach chart](../../../doc/img/ILSDemod_plugin_chart.png)
Next, we need to enter the latitude (8), longitude (9) and elevation (10) of the runway threshold. This is available on some charts (orange box), but not usually accurately enough to line up perfectly on the 3D map.
For this, it's best to use the 3D map, and double click at the start of the threshold to set a marker, which will display the coordinates.
For this, it's best to use the 3D map, and double click while holding shift at the start of the threshold to set a marker, which will display the coordinates.
![Runway threshold coordinates](../../../doc/img/ILSDemod_plugin_threshold.png)

View File

@ -227,7 +227,7 @@
});
viewer.scene.globe.depthTestAgainstTerrain = false; // So labels/points aren't clipped by terrain (this prevents pickPosition from working)
viewer.screenSpaceEventHandler.setInputAction(pickEntity, Cesium.ScreenSpaceEventType.LEFT_CLICK);
viewer.screenSpaceEventHandler.setInputAction(showCoords, Cesium.ScreenSpaceEventType.LEFT_DOUBLE_CLICK);
viewer.screenSpaceEventHandler.setInputAction(showCoords, Cesium.ScreenSpaceEventType.LEFT_DOUBLE_CLICK, Cesium.KeyboardEventModifier.SHIFT);
viewer.screenSpaceEventHandler.setInputAction(hideCoords, Cesium.ScreenSpaceEventType.RIGHT_CLICK);
var buildings = undefined;
const images = new Map();

View File

@ -169,7 +169,7 @@ The map feature displays a 2D and a 3D map overlaid with objects reported by oth
* Setting the Device center frequency to the first frequency found in the text bubble for the object.
* Changing the order in which the objects are drawn, which can help to cycle through multiple objects that are at the same location on the map.
* Setting the object as the tracking target on the 3D map.
* Left double clicking on the 3D map will place a marker showing the position. Right clicking will clear it.
* Left double clicking while holding shift on the 3D map will place a marker showing the position. Right clicking will clear it.
The 2D map will only display the last reported positions for objects.
The 3D map, however, has a timeline that allows replaying how objects have moved over time.