获取用户当前位置并使用浮动按钮在Google地图上添加标记

时间:2018-06-23 08:38:53

标签: android google-maps currentlocation user-location

标题显示我想获取用户当前位置并设置标记,并在单击按钮时为相机设置动画

我有这段代码,但是上面已弃用了方法并崩溃:

 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);

它将启用一个按钮,但是我想通过我的自定义按钮来实现 任何帮助将不胜感激!

0 个答案:

没有答案