Android Google Maps v2 - set zoom level for myLocation

前端 未结 13 1126
孤城傲影
孤城傲影 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条回答
  •  Happy的楠姐
    2020-12-05 02:09

    Slightly different solution than HeatfanJohn's, where I change the zoom relatively to the current zoom level:

    // Zoom out just a little
    map.animateCamera(CameraUpdateFactory.zoomTo(map.getCameraPosition().zoom - 0.5f));
    

提交回复
热议问题