在Xamarin.Android谷歌地图中动画标记更改位置

时间:2017-07-31 07:17:45

标签: android google-maps xamarin xamarin.android

我正在尝试在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);

如何用线性动画改变位置?提前谢谢。

0 个答案:

没有答案