我想在地图视图中显示三个针点,我已经检查了模拟器中的互联网连接,甚至我使用了显示地图视图的密钥,但它显示错误无法获取连接工厂客户端。
问问题
110 次
2 回答
0
在您的 Android 应用程序中显示地图的基本信息。
1. Your application build platform is Google-Api not Android-Api.
2. put <uses-library android:name="com.google.android.maps" /> in Application tag in
Android manifest file.
3. Your mapview activity must extend MapActivity.
4. You have a your system specific map-key for debug version of application.
于 2012-04-09T10:15:50.817 回答
0
尝试添加这两个权限。
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
这可能是因为 Map 正在放大它。你可以参考这个LINK。
于 2012-04-09T10:19:32.503 回答