我正在使用google maps api,想在移动时在我的位置上画一个圈圈。当我开始的时候一切都好,但是当移动的时候,圆圈保持在原来的位置。

 private void setSearchCircle(LatLng newLatlng) {
    if (googleMap != null) {
        radiusCircle = googleMap.addCircle(new CircleOptions()
                .center(newLatlng)
                .radius(SEARCH_RADIUS)
                .fillColor(Color.TRANSPARENT)
                .strokeColor(mActivity.getResources().getColor(R.color.detail_grey))
                .strokeWidth(8));
    }
}


  private void moveSearchCircle(LatLng newLatlng) {
    if(radiusCircle != null){
        radiusCircle.setCenter(newLatlng);
    }
}

 @Override
public void onLocationChanged(Location location) {
    if (mLastLocation != null) {
        lastLatitude = mLastLocation.getLatitude();
        lastLongitude = mLastLocation.getLongitude();
        LatLng currentLatLng = new LatLng(lastLatitude, lastLongitude);
        moveSearchCircle(currentLatLng);
    }
}

最佳答案

所以我发现了我的问题..当我直接使用

 @Override
public void onLocationChanged(Location location) {
if (mLastLocation != null) {
    LatLng currentLatLng = new LatLng(location.getLatitude(),location.getLongitude());
    moveSearchCircle(currentLatLng);
  } }

我工作如期

关于android - Google Maps Move Circle,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40361596/

10-09 20:44