在创建简单的 iPhone 应用程序时,鉴于 XCode/Xamarin Studio 附带的标准 iOS 地图,是否有一种简单的方法:
给定一个纬度/经度列表,每 x 秒读取一次此列表并将其绘制到地图上。
我知道如何将当前位置绘制到地图上。
我也有以下代码,我正在尝试测试 - 我相信这是连接起来的,所以当一个新位置被“发现”时,它会将它重新绘制到屏幕上。
map.DidUpdateUserLocation += (sender, e) => {
if (map.UserLocation != null)
{
CentreMapAtLocation(map.UserLocation.Coordinate.Latitude,
map.UserLocation.Coordinate.Longitude);
}
有什么诀窍吗,这里?