Questions tagged «android-maps-v2»

11
GoogleService初始化失败
我在我的Android应用程序中使用Google Maps。我已经创建了密钥,并在清单文件中添加了必要的权限。但是很快我启动了应用程序,我在调试器中收到了以下消息: GoogleService未能初始化,状态:10,缺少预期的资源:“ R.string.google_app_id”,用于初始化Google服务。可能的原因是缺少google-services.json或com.google.gms.google-services gradle插件。 我不知道怎么了。地图运行正常,我可以毫无问题地使用它。我的gradle文件具有以下条目: 编译'com.google.android.gms:play-services:8.4.0' 它在抱怨什么,我该如何缓解?

17
更改Google Maps API的“我的位置”按钮的位置
我正在使用Google Maps Android API v2,我需要一种方法来确定“我的位置”按钮的位置。 我得到这样的“我的位置”按钮: GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext()); final GoogleMap map = ((SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map)).getMap(); // This gets the button map.setMyLocationEnabled(true);

2
使用本地图块的TileProvider
我想使用TileProvider最新的Android Maps API(v2)的新功能在上覆盖一些自定义图块GoogleMap。但是,由于我的用户很多时候都无法上网,因此我希望将图块保存在设备上的zipfile / folder结构中。我将使用Maptiler和来生成我的图块geotiffs。我的问题是: 将磁贴存储在设备上的最佳方法是什么? 如何创建返回本地图块的TileProvider?

3
Google Maps V2-Android-获取当前的缩放级别
如何在GoogleMap上以整数形式获取当前缩放级别。我需要从GMaps v1.1中获取以下代码: MapView mGoogleMapView; int zoomLevel = mGoogleMapView.getZoomLevel(); 我知道方法getMinZoomLevel()和getMaxZoomLevel(),但是我在Android GMap V2文档中找不到能够提供当前缩放级别的任何内容。有人对如何执行此操作有任何指示吗? 任何帮助,将不胜感激。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.