谷歌地图:与用户一起顺利移动标记和地图?

时间:2015-11-03 13:09:31

标签: android google-maps google-maps-android-api-2

一旦用户打开该功能并向上终止该功能,我必须在Google地图中显示实时/实时用户移动位置。

我已经使用下面的方法为标记设置动画。

 private void animateMarker(final Marker marker, final LatLng toPosition,
                              final boolean hideMarker) {
        final Handler handler = new Handler();
        final long start = SystemClock.uptimeMillis();
        Projection proj = mMap.getProjection();
        Point startPoint = proj.toScreenLocation(marker.getPosition());
        final LatLng startLatLng = proj.fromScreenLocation(startPoint);
        final long duration = 1000;

        final Interpolator interpolator = new LinearInterpolator();
        handler.post(new Runnable() {
            @Override
            public void run() {
                long elapsed = SystemClock.uptimeMillis() - start;
                float t = interpolator.getInterpolation((float) elapsed
                        / duration);
                double lng = t * toPosition.longitude + (1 - t)
                        * startLatLng.longitude;
                double lat = t * toPosition.latitude + (1 - t)
                        * startLatLng.latitude;
                marker.setPosition(new LatLng(lat, lng));

                if (t < 1.0) {
                    // Post again 16ms later.
                    handler.postDelayed(this, 16);
                } else {
                    if (hideMarker) {
                        marker.setVisible(false);
                    } else {
                        marker.setVisible(true);
                    }
                }
            }
        });
    }

使用以下代码也可以移动地图。

 // Showing the current location in Google Map
 mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
 // Zoom in the Google Map
 mMap.animateCamera(CameraUpdateFactory.zoomTo(15));

到目前为止,我所做的并不足以将标记和地图一起移动。它看起来并不那么完美。我必须将地图与标记一起移动。

Source Code

谢谢。

1 个答案:

答案 0 :(得分:1)

  • 我在我的类似项目中所做的是:假设我有一个用户逐一导航的点列表,所以我希望用动画在地图中显示该行程。您可以在两个点之间移动标记,然后将相机设置为第二个点,而不是同时移动标记和相机,现在再次将标记移动到下一个点,然后当标记到达下一个点时,为相机设置动画。

要实现这一点,您必须稍微修改一下代码。 添加以下代码:

    private static final int ANIMATE_SPEEED_TURN = 1000;
    private static final int BEARING_OFFSET = 20;    

    if (t < 1) {
            mHandler.postDelayed(this, 16);
        } else {

         // your code
         if (hideMarker) {
                    marker.setVisible(false);
                } else {
                    marker.setVisible(true);
                }


         //my added code
                LatLng begin = getBeginLatLng();// current point
                LatLng end = getEndLatLng();// next point

                float bearingL = bearingBetweenLatLngs(begin, end);  

                CameraPosition cameraPosition =
                        new CameraPosition.Builder()
                                .target(end)
                                .bearing(bearingL + BEARING_OFFSET)
                                .tilt(tilt)
                                .zoom(googleMap.getCameraPosition().zoom)
                                .build();

                googleMap.animateCamera(
                        CameraUpdateFactory.newCameraPosition(cameraPosition),
                        ANIMATE_SPEEED_TURN,
                        null
                );

                mHandler.postDelayed(animator, 16);

            }

如果出现任何问题,请告诉我! 有关详细步骤,请访问Animating the map