Different results are returned when using the setExtent(), panToExtent(), zoomToAllLayers() ArcPy functions in ArcGIS Pro Notebook or Python windows.
上次发布: March 6, 2023ArcGIS Pro
漏洞 ID 编号
BUG-000155166
已提交
January 18, 2023
上次修改时间
June 5, 2024
适用范围
ArcGIS Pro
找到的版本
3.0.3
操作系统
Windows OS
操作系统版本
10.0 64 Bit
状态
As Designed
经开发团队审核,已确定此行为符合设计。 有关详细信息,请参阅“其他信息”部分。
附加信息
The scripts provided to reproduce the issue works as expected.
#mf.panToExtent(desc.extent) - This pans correctly and does not change scale.
mf.camera.setExtent(desc.extent) - This correctly sets the map frame extent.
mf.zoomToAllLayers(desc.extent) - This is wrong syntax. There are two optional input parameters that consider selection and symbol when zooming. Passing in an extent object throws an error.
Also, when writing a script where the application update can be seen appropriately, the ArcGISProject('CURRENT') keyword must be used and not reference a project on a disk. If the project on a disk needs to be updated, then pass in the full path, save the changes and then open the updated project.