After a tile map package is loaded, the SetViewpointAsync() method animates only to the east/west direction and ignores the north/south direction.
上次发布: April 14, 2017ArcGIS Runtime SDK for Xamarin
漏洞 ID 编号
BUG-000102852
已提交
February 10, 2017
上次修改时间
June 5, 2024
适用范围
ArcGIS Runtime SDK for Xamarin
找到的版本
100.0.0
操作系统
Windows OS
操作系统版本
8.1
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
This is by design. The first Layer loaded by the Map determines the Spatial Reference of the Map and the effective maximum extent. In the case of the reproducer, it is still possible to pan E/W because wraparound is enabled (by default). If the MapView.WrapAroundMode property is set to WrapAroundMode.Disabled, then the extent is restricted in both the N/S and E/W directions. To enable a larger navigable extent, pass the desired Spatial Reference into the Map constructor and optionally an InitialViewpoint for the initial extent, as shown in the example code below:
Map map = new Map(SpatialReferences.WebMercator);
map.Basemap.BaseLayers.Insert(0, localTiledLayer);