在android上查找开始地理点和结束地理点之间的中心地理位置

时间:2012-07-27 05:51:26

标签: android

我已经开始纬度,经度和结束纬度,经度。

我使用纬度和经度找到Geo Point。

之后我在两个地理位置之间画线。

我的问题是如何找到Geopoint的中心?

我在开始和结束位置显示“OverlayItem”。但无法找到Geopoint的中心。

如何找到中心点?

我使用下面的代码在开始和结束位置显示overlayItem。

        drawable            = getResources().getDrawable(R.drawable.annot_start);
        point               = new GeoPoint((int)(startLatitude*1E6), (int)(startLongitude*1E6));
        overlayItem         = new OverlayItem(point, startAddress, "Welcome");
        itemizedOverlay[n]= new MyItemizedOverlay(drawable, mapView);
        itemizedOverlay[n].addOverlay(overlayItem);
        mapOverlays.add(itemizedOverlay[n]);

        drawable            = getResources().getDrawable(R.drawable.annot_end);
        point               = new GeoPoint((int)(endLatitude*1E6), (int)(endLongitude*1E6));
        overlayItem         = new OverlayItem(point, endAddress, "Welcome");
        itemizedOverlay[n+1]= new MyItemizedOverlay(drawable, mapView);
        itemizedOverlay[n+1].addOverlay(overlayItem);
        mapOverlays.add(itemizedOverlay[n+1]);

3 个答案:

答案 0 :(得分:8)

您可以使用Haversine formula代码段并使用此page

进行检查
public static void midPoint(double lat1,double lon1,double lat2,double lon2){

double dLon = Math.toRadians(lon2 - lon1);

//convert to radians
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);
double lat3 = Math.atan2(Math.sin(lat1) + Math.sin(lat2), Math.sqrt((Math.cos(lat1) + Bx) * (Math.cos(lat1) + Bx) + By * By));
double lon3 = lon1 + Math.atan2(By, Math.cos(lat1) + Bx);

//print out in degrees
System.out.println(Math.toDegrees(lat3) + " " + Math.toDegrees(lon3));
}

答案 1 :(得分:1)

经过检查的解决方案对我不起作用。

无论如何,我找到了一个最简单的解决方案:

   private GeoPoint midPoint(double lat1,double lon1,double lat2,double lon2){
        //create origin geopoint from parameters
        GeoPoint origin = new GeoPoint(lat1,lon1);
        //create destination geopoints from parameters
        GeoPoint destination = new GeoPoint(lat2,lon2);
        //calculate and return center
        return GeoPoint.fromCenterBetween(origin, destination);
    }

如果您的来源和目的地为GeoPoint,则可以直接使用“GeoPoint.fromCenterBetween”方法。

答案 2 :(得分:0)

你可以通过取两点的纬度平均值和经度的平均值来近似中点。

如果您需要更精确一点,可以使用the Haversine formula和一些代数来推导出中点。