1

我是我当前位置的谷歌地图 API。我正在开发地图应用程序,它首先加载当前位置,然后用户可以指向地图上的任何位置。我的问题是,如果我正在移动,那么我的位置会一次又一次地向我当前的位置移动,并且用户无法在地图上指向所需的位置,因为它再次向其当前位置路由。下面给出了我的代码,其中我使用代码来初始化地图。您的帮助将不胜感激。

private static final LocationRequest REQUEST = LocationRequest.create()
            .setInterval(8000) // 5 seconds
            .setFastestInterval(16) // 16ms = 60fps
            .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);

private void setUpMapIfNeeded() {
        if (mMap == null) {

            mMap = ((SupportMapFragment) getSupportFragmentManager()
                    .findFragmentById(R.id.map)).getMap();
            mMap.clear();
            mMap.setOnMapClickListener(MyLocationActivity.this);

            if (mMap != null) {
                mMap.setOnMapClickListener(MyLocationActivity.this);
                mMap.setMyLocationEnabled(true);
                mMap.setBuildingsEnabled(true);
                mMap.getUiSettings().setCompassEnabled(false);
                mMap.setIndoorEnabled(true);
                mMap.setMapType(mMap.MAP_TYPE_NORMAL);
                mMap.setTrafficEnabled(true);
            }
        }
    }

    private void setUpLocationClientIfNeeded() {
        if (mLocationClient == null) {
            mLocationClient = new LocationClient(getApplicationContext(),
                    connectionCallbacks, onConnectionFailedListener);
        }
    }

    ConnectionCallbacks connectionCallbacks = new ConnectionCallbacks() {

        @Override
        public void onDisconnected() {

        }

        @Override
        public void onConnected(Bundle connectionHint) {
            showLoadingDialog();
            mLocationClient.requestLocationUpdates(REQUEST, locationListener);
        }
    };

    OnConnectionFailedListener onConnectionFailedListener = new OnConnectionFailedListener() {

        @Override
        public void onConnectionFailed(ConnectionResult result) {

        }
    };

    OnMyLocationChangeListener onMyLocationChangeListener = new OnMyLocationChangeListener() {

        @Override
        public void onMyLocationChange(Location location) {

        }
    };

    LocationListener locationListener = new LocationListener() {

        @Override
        public void onLocationChanged(Location location) {

            dismissLoadingDialog();

            float diff = 0;

            if (lastLocation != null) {
                diff = location.distanceTo(lastLocation);
            }

            if ((lastLocation == null) || (diff > 5)) {

                LatLng latLng = new LatLng(location.getLatitude(),
                        location.getLongitude());

                CameraPosition cameraPosition = new CameraPosition(latLng, 14,
                        45, 0);

                CameraUpdate cameraUpdate = CameraUpdateFactory
                        .newCameraPosition(cameraPosition);

                mMap.animateCamera(cameraUpdate, 25, null);
            markerOptions.icon(BitmapDescriptorFactory.fromResource(R.drawable.flag));
                mMap.getUiSettings().setZoomControlsEnabled(true);
                mMap.getUiSettings().setZoomGesturesEnabled(true);
                lastLocation = location;
            }

        }
    };
4

1 回答 1

2

@using_coding 可能有很多方法可以做到这一点,我没有检查这个代码,但它可能会在你的场景中帮助你。

1:在创建活动时进行布尔检查,例如:

boolean isFirstTime = true;

第一次在您的位置监听器中制作:

mMap.setMyLocationEnabled(true);

在本专栏中,让您的 isFirstTime 为假,并在该块MyLocationEnabled中为假。这样,如果用户位置发生更改,它将检查布尔值,如果为假,则不会更新您的当前位置。

2:第二种方式不是解决办法,但你也可以这样做,比如你可以将location request时间设置为相对更多。

于 2015-06-28T08:59:28.663 回答