我想在我的GoogleMap上使用一种“迷你地图”。最低要求是创建标记并动态更改缩放(两者)。有没有比用两个片段创建两个GoogleMaps更简单的方法?
我认为同时使用两个GoogleMaps会降低性能,我还没有尝试过。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/miniMap"
android:name="com.example.presentation.views.MainActivity"
android:layout_width="300dp"
android:layout_height="300dp"
class="com.google.android.gms.maps.MapFragment" />
<fragment
android:id="@+id/bigMap"
android:name="com.example.presentation.views.MainActivity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
class="com.google.android.gms.maps.MapFragment" />
</RelativeLayout>
答案 0 :(得分:0)
Google Play服务的示例应用已自动提供了4张地图。 你可以在Android-sdk下找到它:
〜\ Android的SDK \额外\谷歌\ google_play_services \样品\地图\ SRC \ COM \示例\ mapdemo \ MultiMapDemoAtivity.java