0

Googleマップを使用してAndroidアプリケーションを開発しています。画面の中央に十字線を表示し、ユーザーがボタンをクリックしたときにマーカーを中央にプロットしたいと考えています。だから私の質問は、地図に十字線を描く方法です。

これを検索しましたが、すべてのソウルションは、オーバーレイ クラス (com.google.android.maps) の十字線を使用する古い Google マップ API を指していますが、現在、このクラスはサポートされていません。

助けてください

私はこのことを達成したい:-

クロスヘア

ありがとう

4

1 に答える 1

0

これを行うために相対レイアウトを使用しています。

<?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>
于 2016-09-14T23:51:44.853 に答える