在我的應用程序中使用Google Maps V2。 這是代碼片段,它描述了地圖片段。限制矩形區域,Google Maps V2
<?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/g_map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
<ImageView
android:id="@+id/center_button"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="@drawable/btn_centering"
android:clickable="true" />
</RelativeLayout>
如何限制用戶可以導航的地圖的矩形區域?我試圖用OnCameraChangeListener做到這一點,但它看起來很醜並且不穩定。 (也許這是我的錯)))
您的意思是用戶只能在某個地理區域導航? – Aiapaec
@El_Mochiq,是的,只能在由矩形包圍的區域內導航。 –