摘要
工具获取文件夹位置,其中已定位用作布局模板的地图文档(.mxd 文件)并以“JavaScript 对象标记法”(JSON) 格式返回布局模板的内容。
用法
ArcGIS Server 中附带了此工具,旨在打印服务内发布为地理处理任务。也用于预配置的 PrintingTools 服务。
此工具的输出始终是格式为 JSON 的字符串。字符串是可用地图文档列表(用作布局模板)及以下信息:
- 页面布局的大小
- 活动数据框的大小
- 以下布局元素的可用性:
- 图例元素
- 标题文本元素
- 版权文本元素
- 作者文本元素
- 自定义文本元素及其名称和现有值
样本输出 JSON
[{ "layoutTemplate": "A4 Landscape", //name of the layout "pageSize": [29.7, 21], //page size "activeDataFrameSize": [27.75, 15.91], //size of the active data frame "layoutOptions": { "hasAuthorText": true, //is the predefined AuthorText available "hasCopyrightText": true, //is the predefined CopyrightText available "hasTitleText": true, //is the predefined TitleText available "hasLegend": true, //is legend element available "customTextElements": [] } }, { "layoutTemplate": "MyTemplatesWithCustomTextElements", "pageSize": [11, 8.5], "activeDataFrameSize": [6.65, 7.34], "layoutOptions": { "hasAuthorText": false, "hasCopyrightText": true, "hasTitleText": true, "hasLegend": true, "customTextElements": [ //available list of custom text elements { "CityName": "Redlands" }, { "MapCenterCoordinates": "" }, { "SelectedParcelID": ""} ] } }]
工具应使用相关导出 Web 地图工具使用的同一文件夹位置。
有关更多信息,请参阅 ArcGIS Server 帮助中的在 Web 应用程序中打印。
语法
GetLayoutTemplatesInfo_server ({Layout_Templates_Folder})
参数 | 说明 | 数据类型 |
Layout_Templates_Folder (可选) | 用作布局模板的地图文档(.mxd 文件)所在的文件夹的完整路径。默认位置为 <install_directory>\Templates\ExportWebMapTemplates。 | Folder |
代码示例
从文件夹的所有 MXD 中,以下脚本返回每个布局的元数据列表。
arcpy.GetLayoutTemplatesInfo_server(r'C:\Data\MyLayouts')
环境
此工具不使用任何地理处理环境。
许可信息
- ArcGIS Desktop Basic: 是
- ArcGIS Desktop Standard: 是
- ArcGIS Desktop Advanced: 是