如何在谷歌地图上移动地图,但将标记保存为android中的当前位置?

时间:2017-08-14 11:04:32

标签: android google-maps

我是android的新手。我在最近两天遭遇了。我已经研究了很多但我没有得到。我在地图中实现了不同的概念,但地图没有移动。它显示当前位置和标记移动map.I想在地图上将标记保留为位置选择器.Marker将根据地图移动选择不同的位置。请帮忙我浪费了很多时间来做这件事。

1 个答案:

答案 0 :(得分:0)

你可以通过不同的方式做到这一点。最简单 - 在地图片段上添加标记图像到ImageView,类似:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.MapFragment"
    />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/marker"
    />

</RelativeLayout>

另请查看this问题。