有时候你在初始化地图时不是直接在xaml中设置Map的Center,而是在cs代码中设置Center或者设置SetZoomAndCenter改变中心点和缩放级别。你可能会发现,不起作用。 这边提出的解决方案是:延迟设置地图中心点或者缩放级别。
下列代码是在map的MapLoaded事件中,页面加载事件也应该是可以的
DispatcherTimer timer = new DispatcherTimer(); timer.Tick += (a, b) => { map.Center= new MLngLat(86.397428, 30.90923); timer.Stop(); }; timer.Interval = TimeSpan.FromMilliseconds(100); timer.Start();
Windows Phone SDK v1.1.1以下版本已经不再更新。