标题显示我想获取用户当前位置并设置标记,并在单击按钮时为相机设置动画
我有这段代码,但是上面已弃用了方法并崩溃:
Location myLcation = map.getMyLocation();
LatLng myPosition = new LatLng(myLcation.getLatitude(),myLcation.getLongitude());
MarkerOptions currentLocationMarker = new MarkerOptions()
.position(myPosition)
.title(/*YOUR TITLE*/)
.icon(BitmapDescriptorFactory.fromResource(R.drawable./*YOUR ICON*/));
map.addMarker(currentLocationMarker);
CameraUpdate location = CameraUpdateFactory.newLatLngZoom(myPosition, 6);
mMap.animateCamera(location);
我今天也通过添加
知道mMap.setMyLocationEnabled(true);
它将启用一个按钮,但是我想通过我的自定义按钮来实现 任何帮助将不胜感激!