Optional
options: GeodesicOptionsReadonly
ellipsoidReadonly
optionsstarting point
initial bearing (in degrees)
distance from starting point to calculate along given bearing in meters.
How many iterations can be made to reach the allowed deviation (ε
), before an error will be thrown.
Final point (destination point) and bearing (in degrees)
Returns the point of intersection of two paths defined by position and bearing. This calculation uses a spherical model of the earth. This will lead to small errors compared to an ellipsiod model. based on the work of Chris Veness (https://github.com/chrisveness/geodesy) source: https://github.com/chrisveness/geodesy/blob/master/latlon-spherical.js
1st path: position and bearing
2nd path: position and bearing
Vincenty inverse calculation. based on the work of Chris Veness (https://github.com/chrisveness/geodesy) source: https://github.com/chrisveness/geodesy/blob/master/latlon-ellipsoidal-vincenty.js
Latitude/longitude of starting point.
Latitude/longitude of destination point.
Object including distance, initialBearing, finalBearing.
implements scientific modulus source: http://www.codeavenger.com/2017/05/19/JavaScript-Modulo-operation-and-the-Caesar-Cipher.html
Generated using TypeDoc
Vincenty direct calculation. based on the work of Chris Veness (https://github.com/chrisveness/geodesy) source: https://github.com/chrisveness/geodesy/blob/master/latlon-ellipsoidal-vincenty.js