2

我正在为我的应用程序使用 Mapsui 2.0-beta.22 和 Xamarin Forms 3.4.0。我无法进行地图居中工作,我尝试了许多来自堆栈、其他站点和 Mapsui 示例的示例。

对我来说唯一“可用”的方法是:

map.Home = n => n.NavigateTo(sphericalMercatorCoordinate, map.Resolutions[9]);

从示例中,我使用的 Mapsui 版本在 Map 类中没有方法来居中视图。

我试图从MapViewModel方法中心地图:

public async override void OnNavigatedTo(INavigationParameters parameters)

我在 NavigationParameters 中传递点坐标,然后用它们创建sphericalMercatorCoordinate. 即使这一点是有效的,NavigateTo从上面使用在任何情况下都不起作用。

4

1 回答 1

2

map.Home 方法旨在指定初始视口。如果要在初始化后缩放到任何视口或位置,则需要使用:

mapControl.Navigator.NavigateTo
于 2019-03-15T13:56:31.013 回答