android中有多个标记的快速地图加载问题?

时间:2011-01-04 09:52:28

标签: android google-maps google-maps-api-3

我在三星epic.map中加载多个标记的地图时遇到问题。一段时间后会显示.pls给我解决方法。

感谢。

2 个答案:

答案 0 :(得分:2)

Google地图是从互联网动态加载的。这是延迟的来源。检查你的网络连接。

答案 1 :(得分:-1)

如果您仅使用地图进行标记显示,请使用Google地图Lite Mode

的精简地图特色功能
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:name="com.google.android.gms.maps.MapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:cameraZoom="13"
map:mapType="normal"
map:liteMode="true"/>

map:liteMode =“true”它会在精简模式下制作一些limitation的地图   
AND
对于太多标记,请使用标记google link的聚类 聚类将提高地图的可读性 在集群之前

enter image description here
群集后 enter image description here