将相机重定向到当前位置Google Maps API v2

时间:2015-01-14 18:32:09

标签: java android google-maps android-studio

我正在尝试将相机移动到我当前的位置,我尝试的是:

我的onCreateView看起来像:

 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View inflatedView = inflater.inflate(R.layout.fragment_photos, container, false);

        try {
            MapsInitializer.initialize(getActivity());
        } catch (Exception e) {
            // TODO handle this situation
        }

        mMapView = (MapView) inflatedView.findViewById(R.id.mapView);
        mMapView.onCreate(mBundle);


        setUpMapIfNeeded(inflatedView);

        return inflatedView;
    }

我的onCreate看起来像:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mBundle = savedInstanceState;
}

我有一个名为setUpMapIfNeeded的方法,它会使视图膨胀......我尝试过的事情是使用我的mMap.getMyLocation()创建一个位置,然后创建两个双打lat和{ {1}}它们是= lng,我尝试使用我的位置创建一个cameraZoomIn,但它不起作用。

location.getLatitude and Longitude

setUpMap方法

private void setUpMapIfNeeded(View inflatedView) {
    if (mMap == null) {
        mMap = ((MapView) inflatedView.findViewById(R.id.mapView)).getMap();
        mMap.getUiSettings().setMyLocationButtonEnabled(true);
        mMap.setMyLocationEnabled(true);

        Location location = mMap.getMyLocation();
        double lat =  location.getLatitude();
        double lng = location.getLongitude();
        CameraUpdate cameraUpdate = CameraUpdateFactory.zoomTo(location, 10);
        mMap.animateCamera(cameraUpdate);

        if (mMap != null) {
            setUpMap();
        }
    }
}

希望你能帮助你解决这个问题。

感谢。

2 个答案:

答案 0 :(得分:2)

不推荐使用GoogleMap.getLocation,您应该使用位置服务:

LocationManager mng = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Location location = mng.getLastKnownLocation(mng.getBestProvider(new Criteria(), false));

double lat = location.getLatitude();
double lon = location.getLongitude();

CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(new LatLng(lat, lon), 10);
mMap.animateCamera(cameraUpdate);

答案 1 :(得分:0)

这是我缩放的方式

LatLng a = new LatLng(gps.getLatitude(), gps.getLongitude());
map.animateCamera(CameraUpdateFactory.newLatLngZoom(a, 10));

我希望这会对你有帮助。