我画过这样的线
我使用下面的代码找到了中点,
public void midPoint(double lat1,double lon1,double lat2,double lon2){
double dLon = Math.toRadians(lon2 - lon1);
lat1 = Math.toRadians(lat1);
lat2 = Math.toRadians(lat2);
lon1 = Math.toRadians(lon1);
double Bx = Math.cos(lat2) * Math.cos(dLon);
double By = Math.cos(lat2) * Math.sin(dLon);
finalLat= Math.toDegrees(Math.atan2(Math.sin(lat1) + Math.sin(lat2), Math.sqrt((Math.cos(lat1) + Bx) * (Math.cos(lat1) + Bx) + By * By)));
finalLng= Math.toDegrees(lon1 + Math.atan2(By, Math.cos(lat1) + Bx));
}
它的成功工作..
但我无法找到“R”- 路线中途点。,如何在 android 上找到路线中途点。我在网上搜索过,我找到了https://gis.stackexchange.com/questions/18584/how-to-find-a-point-half-way-between-two-other-points。但在这种方法中,为 x、y、z 分配了哪些值。我不知道。
或任何其他代码在 android 上找到 Route 中途。