我使用的是SupportMapFragment
,當我在互聯網上使用GoogleMap
時,很容易顯示來自GoogleMaps Android的藍點以顯示我的位置並將相機放大,但是當我的應用處於離線模式但位置在我可以輕鬆縮放到我的位置,但無法顯示藍點。Android谷歌地圖顯示沒有互聯網的位置
if (mGoogleMap != null) { List<RestaurantDTO> local = new ArrayList<>(); local.addAll(mRestData); mGoogleMap.setInfoWindowAdapter(new RestaurantAdapter()); mGoogleMap.setMyLocationEnabled(true); mGoogleMap.getMyLocation(); mGoogleMap.getFocusedBuilding();
所以在這裏我想主要mGoogleMap.setMyLocationEnabled(true);
和mGoogleMap.getMyLocation();
方法,所以,當我刪除然後它不顯示我的藍色圓圈針。
可能使用你的網絡提供商 – Androider
@Androider設置位置源,請你解釋一點。 –
@KirillZotov你可以編輯你的答案來顯示代碼嗎? –