ESRI ArcGIS:Map.ZoomOut()
Posted
技术标签:
【中文标题】ESRI ArcGIS:Map.ZoomOut()【英文标题】:ESRI ArcGIS: Map.ZoomOut() 【发布时间】:2014-10-23 06:33:04 【问题描述】:有没有缩小地图的方法?喜欢对面的:
Map.Zoom(3);
将 3 更改为 -3 不起作用:
Map.Zoom(-3); //No exception, it wont work like this
我正在使用 C# (WPF) 在 Visual Studio 中进行开发
谢谢
【问题讨论】:
【参考方案1】:就像the documentation 说的:
Factor=0.5 缩小到一半。 Factor=2 放大到两倍。
因此,您可能想要这样做:
Map.Zoom(1.0 / 3.0);
【讨论】:
以上是关于ESRI ArcGIS:Map.ZoomOut()的主要内容,如果未能解决你的问题,请参考以下文章