我正在使用谷歌地图开发一个安卓应用程序。我想在屏幕中心显示一个十字准线,然后想在用户单击按钮时在中心绘制标记。所以我的问题是如何在地图上画十字准线。
我搜索了这个,但所有的灵魂都指向旧的谷歌地图 api,在那里获得了使用 Overlay 类(com.google.android.maps)十字准线,但现在不支持这个类。
请帮忙
我想实现这件事:-
谢谢
我正在使用谷歌地图开发一个安卓应用程序。我想在屏幕中心显示一个十字准线,然后想在用户单击按钮时在中心绘制标记。所以我的问题是如何在地图上画十字准线。
我搜索了这个,但所有的灵魂都指向旧的谷歌地图 api,在那里获得了使用 Overlay 类(com.google.android.maps)十字准线,但现在不支持这个类。
请帮忙
我想实现这件事:-
谢谢
我一直在使用相对布局来做到这一点。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
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.SupportMapFragment" />
<ImageView
android:src="@drawable/crosshair"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerInParent="true"/>
</RelativeLayout>