Android Google Maps v2 - set zoom level for myLocation

前端 未结 13 1118
孤城傲影
孤城傲影 2020-12-05 01:39

Is it possible to change the zoom level for myLocation with the new Google Maps API v2?

If you set GoogleMap.setEnableMyLocation(true);, you get a butto

13条回答
  •  無奈伤痛
    2020-12-05 02:15

    You can use

        CameraUpdate center = CameraUpdateFactory.newLatLng(new LatLng(location.getLatitude(), location.getLongitude()));
        CameraUpdate zoom = CameraUpdateFactory.zoomTo(12);
    

提交回复
热议问题