GoogleマップをAndroidで起動すると、全世界が表示されます。マーカーにズームを設定するためには何を変更する必要がありますか?ここにコードがあります。おかげGoogleマップv2でズームレベルを設定
googlemap.getUiSettings().setZoomControlsEnabled(true);
googlemap.getUiSettings().setMyLocationButtonEnabled(true);
LatLng cameraLatLng = sfLatLng;
float cameraZoom = 17;
if(savedInstanceState != null){
mapType = savedInstanceState.getInt("map_type", GoogleMap.MAP_TYPE_NORMAL);
double savedLat = savedInstanceState.getDouble("lat");
double savedLng = savedInstanceState.getDouble("lng");
cameraLatLng = new LatLng(savedLat, savedLng);
cameraZoom = savedInstanceState.getFloat("zoom", 30);
googlemap.setMapType(mapType);
googlemap.animateCamera(CameraUpdateFactory.newLatLngZoom(cameraLatLng, cameraZoom));
位置にsetCenterと同じに設定されている、そうならば、私はすでにあることを行っているが、編集を参照してくださいsetZoom ... – 1088
のためのプロパティがありません... – amalBit