如何使用谷歌android api知道纬度和经度是否接近我当前的位置?

时间:2015-10-20 00:01:07

标签: android google-maps google-latitude

我只是想知道如何使用google android api来获取我当前的位置,显示位置并将该位置与其他纬度和经度进行比较。

1 个答案:

答案 0 :(得分:1)

查看android文档,了解您需要的所有内容。例如,首先你会得到像这样的当前位置

@Override
public void onConnected(Bundle connectionHint) {
    mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
            mGoogleApiClient);
    if (mLastLocation != null) {
        mLatitudeText.setText(String.valueOf(mLastLocation.getLatitude()));
        mLongitudeText.setText(String.valueOf(mLastLocation.getLongitude()));
    }
}

然后您可以使用方法distanceBetween(Location dest)

将其与其他位置进行比较

希望这有帮助。