我正在尝试在Xamarin android Google Map
中设置更改标记位置的动画var markerWithIcon = new MarkerOptions();
markerWithIcon.SetPosition(new LatLng(e.Latitude, e.Longitude));
var marker = googleMap.AddMarker(markerWithIcon);
设定位置
marker.Position = new LatLng(e.Latitude, e.Longitude);
如何用线性动画改变位置?提前谢谢。