Android Google Map v2 - 将标记移动到点击位置并更新地理坐标

时间:2014-08-20 13:19:49

标签: android google-maps

在我的应用中,我会自动检测用户的当前位置,并将地图置于标记周围。

我想让用户点击地图上的其他位置,标记显示在他们点击的位置,并且lat / lon将更新到新的位置。

我该怎么做

2 个答案:

答案 0 :(得分:9)

试试这个

 Marker marker;
 GoogleMap mMap;

 mMap.setOnMapClickListener(new OnMapClickListener() {

        @Override
        public void onMapClick(LatLng latlng) {
            // TODO Auto-generated method stub

            if (marker != null) {
                marker.remove();
            }
            marker = mMap.addMarker(new MarkerOptions()
                    .position(latlng)
                    .icon(BitmapDescriptorFactory
                            .defaultMarker(BitmapDescriptorFactory.HUE_RED)));
            System.out.println(latlng);

       }
   });

答案 1 :(得分:2)

要添加包含当前位置的标记,您必须实施LocationListener

使用以下代码,您可以添加包含您所在位置的标记并移动相机:

            public void onLocationChanged(Location location) {

            map.addMarker(new MarkerOptions().position(new LatLng(location.getLatitude(), location.getLongitude()))
                    .title("My Location"));

            /* ..and Animate camera to center on that location !
             * (the reason for we created this custom Location Source !) */
            map.animateCamera(CameraUpdateFactory.newLatLng(new LatLng(location.getLatitude(), location.getLongitude())));
        }

为了在用户点击地图时添加制作者,您可以使用OnMapLongClickListener

    @Override
    public void onMapLongClick(LatLng point) {

        mMap.addMarker(new MarkerOptions()
            .position(point)
            .snippet(""));
    }