Mapsui Xamarin Forms中心地图
Mapsui Xamarin Forms center map
我正在为我的应用程序使用 Mapsui 2.0-beta.22 和 Xamarin Forms 3.4.0。我无法进行地图居中工作,我尝试了很多来自堆栈、其他站点和 Mapsui 示例的示例。
对我来说唯一的"available"方法是:
map.Home = n => n.NavigateTo(sphericalMercatorCoordinate, map.Resolutions[9]);
从例子来看,因为我使用的 Mapsui 版本在 Map class 中没有方法到中心视图。
我试图通过 MapViewModel
方法使地图居中:
public async override void OnNavigatedTo(INavigationParameters parameters)
我在 NavigationParameters 中传递点坐标,然后用它们来
创建 sphericalMercatorCoordinate
。即使该点是有效的,在任何情况下都无法使用上面的 NavigateTo
。
map.Home方法用于指定初始视口。如果你想在初始化后缩放到任何视口或位置,你需要使用:
mapControl.Navigator.NavigateTo
我正在为我的应用程序使用 Mapsui 2.0-beta.22 和 Xamarin Forms 3.4.0。我无法进行地图居中工作,我尝试了很多来自堆栈、其他站点和 Mapsui 示例的示例。
对我来说唯一的"available"方法是:
map.Home = n => n.NavigateTo(sphericalMercatorCoordinate, map.Resolutions[9]);
从例子来看,因为我使用的 Mapsui 版本在 Map class 中没有方法到中心视图。
我试图通过 MapViewModel
方法使地图居中:
public async override void OnNavigatedTo(INavigationParameters parameters)
我在 NavigationParameters 中传递点坐标,然后用它们来
创建 sphericalMercatorCoordinate
。即使该点是有效的,在任何情况下都无法使用上面的 NavigateTo
。
map.Home方法用于指定初始视口。如果你想在初始化后缩放到任何视口或位置,你需要使用:
mapControl.Navigator.NavigateTo