mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 11:29:53 +03:00
Fixes, Readme, Makers
This commit is contained in:
parent
6fe68a6b73
commit
0d1502e03d
28 changed files with 1055 additions and 408 deletions
|
@ -421,7 +421,7 @@ let WaypointCollection = function () {
|
|||
self.getElevation = async function(globalSettings) {
|
||||
const [nLoop, point2measure, altPoint2measure, namePoint2measure, refPoint2measure] = self.getPoint2Measure(true);
|
||||
let lengthMission = self.getDistance(true);
|
||||
let totalMissionDistance = lengthMission[lengthMission.length -1].toFixed(1);
|
||||
let totalMissionDistance = lengthMission.length >= 1 ? lengthMission[lengthMission.length -1].toFixed(1) : 0;
|
||||
let samples;
|
||||
let sampleMaxNum;
|
||||
let sampleDistance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue