Does anyone know why my map export does not look like my map layout in Pro? I would like the look & feel of my exported PDFs to match what I can see in the layout view. I use masking in my map to prevent some layers from drawing outside of my study area boundaries, weights to ensure that my labels draw as needed, and circle map frames for my inset maps. See screen captures below.
layout view in ArcGIS Pro:
PDF export using notebook script:
import arcpy,os
aprx = arcpy.mp.ArcGISProject("CURRENT")
for lyt in aprx.listLayouts():
lyt.exportToPDF(os.path.join(r"\\xxxxxxxxxx", f"{lyt.name}"))
PDF export from the ribbon (share -> export layout):
Solved! Go to Solution.
Not sure why this worked but I edited my mask layer and was able to remove some redundant layers because of that. Now exporting the maps using the notebook script produces the results that I was looking for.
Hi Sarah,
That's an interesting issue, can you share a project package so we can play?
I got labelling missing issue before, but don't reminder how did I fix it.
Cheers,
Leo.
Not sure why this worked but I edited my mask layer and was able to remove some redundant layers because of that. Now exporting the maps using the notebook script produces the results that I was looking for.