Questions tagged «google-geolocation»

17
该API项目无权使用此API。请确保已在API控制台中激活了此API
我有纬度和经度:"-27.0000,133.0000"。我想以此为基础制作地图。 我尝试去这个链接 https://maps.googleapis.com/maps/api/geocode/json?latlng=-27.0000,133.0000&key=****** 我在浏览器中不断收到此错误 { "error_message" : "This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console: Learn more: https://code.google.com/apis/console", "results" : [], "status" : "REQUEST_DENIED" } 但是我想我已经启用了该API。我登录到我的Google控制台,然后仔细检查。 当我去: https://console.developers.google.com/project/75423435770063/apiui/apis/enabled 我懂了 : 启用了地理编码+地理定位。 我现在有点卡住了。我有什么想念的吗?

5
我什么时候应该使用ACCESS_COARSE_LOCATION权限?
我正在构建一个Android应用程序,该应用程序将跟踪用户的地理位置并在地图上绘制其路线。 我使用的是谷歌播放服务的位置API,如所描述这里。 很明显,我的应用程序需要ACCESS_FINE_LOCATION许可,我将其放入清单中: <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 我还需要ACCESS_COARSE_LOCATION许可吗?我需要粗略位置的用例是什么?
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.