如何显示Location.distanceBetween的结果

时间:2017-12-31 08:26:16

标签: android google-maps google-maps-markers

编辑:建议我使用CSVParser.getRecords公式计算当前位置与放置的标记之间的距离,但无论我在哪里,我都会得到相同的结果放置标记,即1.004822115417686E7。我将在更新的代码中显示该方法。

我只想要从我的位置到放置的标记的距离。我尝试使用distanceTo(Location dest)方法,但我不知道如何将我的Marker LatLng转换为Location对象,如果可能的话。结果,我决定使用Location.distanceBetween方法。

问题是我的结果根本不正确。我究竟做错了什么?我误读了Android文档吗?

我所做的只是执行onMapLongClick来添加标记。当前位置没有标记。它只是一个蓝点,显示用户所在的位置。

地图使用的基础知识:

用户停车。用户将标记放置在他们停放的地图上。用户去附近的建筑物做事。用户回来,打开应用程序,找到汽车。应用程序将显示到汽车的距离。距离不需要考虑障碍物,转弯等。只需一条直线距离即可。

代码:

 @Override
public void onMapLongClick(LatLng latLng) {
    mMap.clear();
    //m is the Marker
    m = mMap.addMarker(new MarkerOptions()
            .position(latLng)
            .title("My Ride")
            .icon(BitmapDescriptorFactory.fromResource(R.drawable.custom_marker30x48)));
    float[] results = new float[1];
    Location currentPos = new Location(LocationManager.GPS_PROVIDER);
    latLng = m.getPosition();
    Location.distanceBetween(currentPos.getLatitude(), currentPos.getLongitude(), latLng.latitude, latLng.longitude, results);
    Log.d(TAG, "Distance using distanceBetween(): " + results[0] + " meters");
    Log.d(TAG, "Distance using meterDistanceBetweenPoints: " + meterDistanceBetweenPoints((float)currentPos.getLatitude(), (float)currentPos.getLongitude(), (float)latLng.latitude, (float)latLng.longitude));
    Toast.makeText(getApplicationContext(), "Marker Added", Toast.LENGTH_SHORT).show();
}
private double meterDistanceBetweenPoints(float lat_a, float lng_a, float lat_b, float lng_b) {
    float pk = (float) (180.f/Math.PI);

    float a1 = lat_a / pk;
    float a2 = lng_a / pk;
    float b1 = lat_b / pk;
    float b2 = lng_b / pk;

    double t1 = Math.cos(a1) * Math.cos(a2) * Math.cos(b1) * Math.cos(b2);
    double t2 = Math.cos(a1) * Math.sin(a2) * Math.cos(b1) * Math.sin(b2);
    double t3 = Math.sin(a1) * Math.sin(b1);
    double tt = Math.acos(t1 + t2 + t3);

    return 6366000 * tt;
}

这是Logcat中的输出:

Distance using distanceBetween(): 1.0061643E7 meters
Distance using meterDistanceBetweenPoints: 1.004822115417686E7

我在这里做错了什么?根据{{​​3}},它说:

  

计算的距离存储在结果[0]

我真的把标记放在离我位置20-30英尺的地方,那么这个奇怪的输出是什么?它对我尝试的新功能甚至都不正确。

2 个答案:

答案 0 :(得分:1)

onMapLongClick 中,您将按此行清除所有以前的标记:

mMap.clear();

因此,每次放置新标记时,都会清除先前的标记。如果您想在两个地方使用标记,即您的位置和点击的位置,那么每次在 onMapLongClick 上执行:

 @Override
public void onMapLongClick(LatLng latLng) {
    mMap.clear();
    //marker at clicked location
    mMap.addMarker(new MarkerOptions()
            .position(latLng)
            .title("My Ride")
            .icon(BitmapDescriptorFactory.fromResource(R.drawable.custom_marker30x48)));
    //marker at your location
    mMap.addMarker(new MarkerOptions()
                .position(MyLatLng)
                .title("My Location")
                .icon(BitmapDescriptorFactory.fromResource(R.drawable.custom_marker30x48)));
    //----
    //do whatever else you want
    //----    
    }

MyLatLng您可以从onLocationChanged函数获取

Location MyLatLng;
@Override
public void onLocationChanged(Location location) {
    MyLatLng = location;
}

要计算两个位置之间的距离,请参阅此解决方案: https://stackoverflow.com/a/8050255/7026525

答案 1 :(得分:0)

好的,所以我想我得到了这个,除非有人发布更好的答案。由于涉及到代码,我将其作为答案发布。我通过创建一个LocationManager对象并在验证我的mLocationPermissionGranted布尔值为true之后将我的代码放在try / catch块中添加了一些代码(这是因为我已经在此步骤之前处理了它)。然后我拿出那个结果并将它从米转换成英尺。这是更新的功能:

@Override
public void onMapLongClick(LatLng latLng) {
    mMap.clear();
    //m is the Marker
    m = mMap.addMarker(new MarkerOptions()
            .position(latLng)
            .title("My Ride")
            .icon(BitmapDescriptorFactory.fromResource(R.drawable.custom_marker30x48)));

    float[] results = new float[1];
    //New LocationManager object
    LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    Criteria criteria = new Criteria();
    try {
        if (mLocationPermissionsGranted) { //<-- already checked before, so it's true
            Location currentPos = locationManager.getLastKnownLocation(locationManager.getBestProvider(criteria, false));
            latLng = m.getPosition();
            Location.distanceBetween(currentPos.getLatitude(), currentPos.getLongitude(), latLng.latitude, latLng.longitude, results);
            Log.d(TAG, "Distance using distanceBetween(): " + (results[0])/0.3048 + " feet"); //<-- CONVERT FROM METERS TO FEET
            Log.d(TAG, "Distance using meterDistanceBetweenPoints: " + (meterDistanceBetweenPoints((float) currentPos.getLatitude(), (float) currentPos.getLongitude(), (float) latLng.latitude, (float) latLng.longitude))/0.3048); //<-- CONVERT FROM METERS TO FEET
            //Toast.makeText(getApplicationContext(), "Marker Added", Toast.LENGTH_SHORT).show();
            Toast.makeText(getApplicationContext(), "Result: " + (results[0])/0.3048 + " feet", Toast.LENGTH_LONG).show();
        }
    } catch(SecurityException e) {
        Log.d(TAG, "Exception: " + e.getMessage());
    }
}
private double meterDistanceBetweenPoints(float lat_a, float lng_a, float lat_b, float lng_b) {
    float pk = (float) (180.f/Math.PI);

    float a1 = lat_a / pk;
    float a2 = lng_a / pk;
    float b1 = lat_b / pk;
    float b2 = lng_b / pk;

    double t1 = Math.cos(a1) * Math.cos(a2) * Math.cos(b1) * Math.cos(b2);
    double t2 = Math.cos(a1) * Math.sin(a2) * Math.cos(b1) * Math.sin(b2);
    double t3 = Math.sin(a1) * Math.sin(b1);
    double tt = Math.acos(t1 + t2 + t3);

    return 6366000 * tt;
}

我测量了我站立的地方的长度,结果大约是35英尺。我使用卷尺,所以它不是很准确,但它就足够了。我在Logcat的结果是:

Distance using distanceBetween(): 34.041595584138484 feet
Distance using meterDistanceBetweenPoints: 33.671114637701

我想我明白了!如果有人有更好的解决方案,请告诉我。我愿意接受建议。