你好,我在我的應用中使用谷歌地圖V2我在公司測試離線地圖(3樓)它工作正常,但在街上它不顯示我的位置它工作正常在我的家裏太(4樓) 這裏的地圖代碼:Android谷歌地圖可能不工作
mapFrag = (MapFragment) getFragmentManager().findFragmentById(R.id.map);
mapFrag.getMapAsync(this);
requestPermission();
createLocationRequest();
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(LocationServices.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
這裏是createLocationRequest方法:
mLocationRequest = new LocationRequest();
mLocationRequest.setInterval(1000 * 60 * 1);
mLocationRequest.setFastestInterval(1000 * 60 * 1);
mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);