Google地图相机不会缩放和移动

时间:2016-08-03 17:30:35

标签: java android google-maps google-maps-api-3 google-api

当我运行活动时,相机处于默认位置并使用默认缩放。我做错了什么?它可能具有.newLatLongZoom()功能。

   @Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;
    mMap.setBuildingsEnabled(true);
    mMap.getUiSettings().setZoomControlsEnabled(true);
    float cameraZoom = 17;
    LatLng location = new LatLng(43.404032, -80.478184);
    mMap.addMarker(new MarkerOptions().position(location).title("49 McIntyre Place #18, Kitchener, ON N2R 1G3"));
    CameraUpdateFactory.newLatLngZoom(location, cameraZoom);
    Snackbar.make(getWindow().getDecorView().getRootView(), "Click the pin for more options", Snackbar.LENGTH_LONG).show();
}

0 个答案:

没有答案