Update src/client/types/geom.ts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
sora-ext 2025-02-28 17:50:32 +01:00
parent b030286f9c
commit 208bf1805e

View File

@ -161,5 +161,5 @@ function recursiveMidPoint(src: LatLng, dst: LatLng, opt: { step?: number, dist?
} }
export function getGeoLine(src: LatLng, dst: LatLng, opt: { step?: number, dist?: number }) { export function getGeoLine(src: LatLng, dst: LatLng, opt: { step?: number, dist?: number }) {
return recursiveMidPoint(src, dst, opt, 0) return recursiveMidPoint(src, dst, opt, 1)
} }