Select to view content in your preferred language

from arcgis.mapping import export_map

314
1
01-24-2019 02:23 AM
GhazalBa_khadher
New Contributor

I want to export my map using this function to different fromat 

from arcgis.mapping import export_map

but I do not know how to use it, if anyone has example or tutorial to use this in order to export the map to pdf format or picture , I would be happy

0 Kudos
1 Reply
DanPatterson_Retired
MVP Emeritus

beyond what is in the api reference?

arcgis.mapping module — arcgis 1.5.2 documentation 

export_map

the parameters are specified

mapping.export_map(format: str = 'PDF', layout_template: str = 'MAP_ONLY', gis=None)

so you would specify …  export_map('PDF', 'MAP_ONLY', None)  … or whatever parameters you want

0 Kudos