<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>idea Map Series Page Editing in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idi-p/936412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking for a toggle button to enable label or layout changes on an individual page of a map series. While most data is driven by the attribute table, sometimes a specific page needs an extra arrow or different wording.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Nov 2019 18:56:46 GMT</pubDate>
    <dc:creator>MatthewDondanville1</dc:creator>
    <dc:date>2019-11-20T18:56:46Z</dc:date>
    <item>
      <title>graphics in data driven pages</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/928029#M24673</link>
      <description>&lt;P&gt;I would like to be able to set graphics to show up only on certain pages, not on every page.&amp;nbsp; Currently when you use a graphic or text, it will show up on each page, when I really only want it on page 2, for example.&lt;/P&gt;&lt;!--  content transformation source ID: 08730000000bn2v  --&gt;</description>
      <pubDate>Thu, 28 Oct 2021 00:02:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/928029#M24673</guid>
      <dc:creator>TiffanyTuro</dc:creator>
      <dc:date>2021-10-28T00:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: graphics in data driven pages</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/928030#M24674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for posting your idea. Although this is not possible through the user interface this is possible through Python. Below is a sample script that demonstrates how you can accomplish this:&lt;BR /&gt;&lt;BR /&gt;import arcpy, os&lt;/P&gt;
&lt;P&gt;#Create a reference to your map document and the Graphic Element in the map document&lt;BR /&gt;#"GraphicElementName" refers to the name of the element in the map document&lt;BR /&gt;mxd = arcpy.mapping.MapDocument(r'C:\Temp\Untitled.mxd')&lt;BR /&gt;graphic = arcpy.mapping.ListLayoutElements(mxd, "GRAPHIC_ELEMENT", "GraphicElementName")[0]&lt;/P&gt;
&lt;P&gt;#Create a list of the page numbers to include the graphic on&lt;BR /&gt;includePicPageList = [2,4]&lt;/P&gt;
&lt;P&gt;#Set a location for a temporary pdf used to create the mapbook&lt;BR /&gt;tempPDF = r'C:\Temp\Temp.pdf'&lt;/P&gt;
&lt;P&gt;#Determine if the Final PDF exists on disk, if it does delete it and then create the PDF&lt;BR /&gt;finalPDFPath = r'C:\Temp\Final.pdf'&lt;BR /&gt;if os.path.exists(finalPDFPath):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(finalPDFPath)&lt;BR /&gt;finalPDF = arcpy.mapping.PDFDocumentCreate(finalPDFPath)&lt;/P&gt;
&lt;P&gt;for pageNum in range (1, 5):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Set graphic's postion off the page&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.elementPositionX = -5&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.elementPositionY = -5&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Move to the approiate page in Data Driven Pages&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.dataDrivenPages.currentPageID = pageNum&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Determine if the current page is in the list of valid pages to include the graphic&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for includePicPage in includePicPageList:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if includePicPage == pageNum:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #If the page is in the page list, set the postion of the graphic to be on the page&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.elementPositionX = 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.elementPositionY = 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Export the page to the temporary PDF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(mxd, tempPDF)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Append it to the Final PDF and delete the temporary page&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; finalPDF.appendPages(tempPDF)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(tempPDF)&lt;/P&gt;
&lt;P&gt;#Save the pdf and delete the reference to the PDF and Map Document variables&lt;BR /&gt;finalPDF.saveAndClose()&lt;BR /&gt;del finalPDF, mxd&lt;/P&gt;

&lt;!-- content transformation source ID: 00a3000000B24FO --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 00:13:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/928030#M24674</guid>
      <dc:creator>ChrisFox</dc:creator>
      <dc:date>2011-07-08T00:13:51Z</dc:date>
    </item>
    <item>
      <title>Data Driven Pages Layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/973868#M24700</link>
      <description>&lt;P&gt;Data driven pages is an amazing tool that helps the user to very quickly produce many different maps based on the same types of data. However, it would be nice to have different layout editing capabilities when producing these many map pages as well. So in theory every new map page would have independent layout options. If changes or edits are made, then they only apply to the current map page in view. For example, my map book contains all of the National Parks within the region of Alaska. All of these parks are different sizes and scales; not so much a 'one size fits all' approach. It would be nice to be able to set some park maps to be portrait orientation and some other maps be landscape orientation. The best example that I can see with another software to describe this is Microsoft Excel and the use of "Sheet" tabs. So in theory all of the maps would still be in the data driven pages map book view, but there would be an option to toggle to the different maps on different tabs (aka "sheet" tabs). Then these maps would be independent enough to have it's own map layout and look.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Another annoyance with the interconnected layouts of the data driven pages maps is the fact that if any map elements are added to one map that it automatically adds to all maps.... If I wanted to see a special text graphic on one specific map then I would add it to other maps as I see fit.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Also, if this independent, interconnected map page issue was fixed then it would also alleviate the need to have to recreate a map once edits are done. (i.e. If you were on page 5 of 20 in a map book, you moved onto page 6, made some edits/additions to the layout, printed map 6, and then wanted to go back to map 4 to reprint the original.....map 4 would now have the map layout of map 6 since that was the last map edits/additions that you did to the map book series.....&amp;nbsp;&lt;/P&gt;&lt;!--  content transformation source ID: 087E00000004EeD  --&gt;</description>
      <pubDate>Tue, 08 Feb 2022 14:09:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/973868#M24700</guid>
      <dc:creator>KristenPearson</dc:creator>
      <dc:date>2022-02-08T14:09:03Z</dc:date>
    </item>
    <item>
      <title>Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idi-p/936412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking for a toggle button to enable label or layout changes on an individual page of a map series. While most data is driven by the attribute table, sometimes a specific page needs an extra arrow or different wording.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2019 18:56:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idi-p/936412</guid>
      <dc:creator>MatthewDondanville1</dc:creator>
      <dc:date>2019-11-20T18:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936413#M4353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Besides it would be useful to place the page number on even and odd pages (different position)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2020 13:44:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936413#M4353</guid>
      <dc:creator>HannesMittergeber1</dc:creator>
      <dc:date>2020-01-14T13:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936414#M4354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Definitely be useful when the extent needs are different for each feature as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2020 20:47:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936414#M4354</guid>
      <dc:creator>ThomasWang</dc:creator>
      <dc:date>2020-03-20T20:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936415#M4355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I'm making a 256-page detailed street map book. Despite using all the great tools to automate and adjust labeling, 90 of those pages (with numerous streets on each page) need manual edits, as many street names are overlapping and still unreadable. I could make hundreds of different label classes, and use the x and y position to move the labels, but this would be cumbersome and way more time consuming. Instead I am using callout text boxes (many with leader lines) on each page, then grouping that text and then turning off that grouped text element when I go to work on the next page. This means I will have to turn on and off 90 elements and export all these pages separately, then recombine into a PDF outside of ArcGIS. So adding this feature would be an absolute time (and sanity) saver!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Also agree with the above 2 comments and have those same problems for the project I am working on).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2020 16:41:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936415#M4355</guid>
      <dc:creator>SarahParks</dc:creator>
      <dc:date>2020-06-22T16:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936416#M4356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some flexibility as described would be nice here, if possible.&amp;nbsp; I know that printing/exporting maps is going by the wayside, but It would be helpful for my current workflow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2020 20:23:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/936416#M4356</guid>
      <dc:creator>ThomasThorsen1</dc:creator>
      <dc:date>2020-06-22T20:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1115462#M17577</link>
      <description>&lt;P&gt;Yep. This unfortunately a deal breaker for me. I need to output somewhere between 50-300 maps on a regular basis that are very similar, but a handful will be a wildly different scale and a few need to be manually edited to have 2 dataframes instead of one. Not being able to make changes on the 10% that need them makes the entire workflow useless. Shame.&lt;/P&gt;&lt;P&gt;The way it's implemented now only works for features that are all basically the same size/shape, a single feature that doesn't conform makes the entire map series useless.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 22:50:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1115462#M17577</guid>
      <dc:creator>NicholasRolstad2</dc:creator>
      <dc:date>2021-11-09T22:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1242538#M22593</link>
      <description>&lt;P&gt;This would be super helpful. For many of my maps, road labels need to be moved or edited - it would be great being able to make these edits and save them to a particular map series page.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 21:23:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1242538#M22593</guid>
      <dc:creator>HannahWilson2</dc:creator>
      <dc:date>2022-12-19T21:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1279847#M24525</link>
      <description>&lt;P&gt;This would also be useful for taking advantage of negative space. Right now map series are really only useful if you're showing very similarly shaped geographies. Otherwise, you have to make your map quite a bit smaller and put all your surrounds off to the side, wasting the space. Some kind of page overrides for individual layout (and map) elements would be very helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 18:54:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1279847#M24525</guid>
      <dc:creator>wayfaringrob</dc:creator>
      <dc:date>2023-04-18T18:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1396148#M28976</link>
      <description>&lt;P&gt;Is there any updates on this or has anyone found a workaround through the UI?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 18:12:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1396148#M28976</guid>
      <dc:creator>BradCarone</dc:creator>
      <dc:date>2024-03-14T18:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1401408#M29106</link>
      <description>&lt;P&gt;It is insane that this isn't a simple built-in functionality in ArcGIS Pro at this point.&amp;nbsp; You're telling me that NOBODY at Esri has ever needed some unique elements added to various pages within a map series?!&amp;nbsp; Really???&amp;nbsp; Not even assigning the first page as a "cover page"?&lt;/P&gt;&lt;P&gt;I have a simple (8) page series based on a line feature layer.&amp;nbsp; However, I want to add a second map frame to page #5 that shows a close-up look at the location, because there is a polygon feature that I need to show.&amp;nbsp; But because I can't now "disconnect" the series or simply assign an element as "unique" or tied to a single page of the series, I have to create a new layout for a single page?&amp;nbsp; C'mon folks, lets bring a little common sense into product development.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 13:32:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1401408#M29106</guid>
      <dc:creator>RichardOHearn</dc:creator>
      <dc:date>2024-03-27T13:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1411037#M29414</link>
      <description>&lt;P&gt;All I need to do is add a text box to include a note for about 20 maps in a 55 page map series - each unique to that map. Very very sad that I am finding I can not do this without a significant work around. Hope this option gets added in soon!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 16:12:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1411037#M29414</guid>
      <dc:creator>Ebolivar</dc:creator>
      <dc:date>2024-04-17T16:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Page Editing</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1411046#M29416</link>
      <description>&lt;P&gt;I made a similar request in another &lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/data-driven-pages-thematic-map-book/idc-p/1156300/highlight/true#M20732" target="_self"&gt;Idea:&lt;/A&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;&lt;EM&gt;I would like to see the ability to dynamically control the visibility of layers and graphics in the Contents pane based on a map series. For instance, say I have a map series with two pages: one with a layer showing antelope habitat and the title graphic "Antelope Habitat"; and one with a layer showing oil and gas well locations and the title graphic "Oil and Gas Wells". After defining a map series, I want to have the habitat layer and Antelope Habitat title toggle on when I am on the antelope map, and off when I move to the oil and gas wells map. Conversely, I'd like to have the well locations layer and Oil and Gas Wells title toggle off when on the antelope map, and on when I am on the oil and gas wells map. I do not want to add a "Page Number" or "Page Name" attribute column to every layer, as is required to dynamically display a layer currently using Page Query. A bonus would be if this functionality could be applied to groups of layers and groups of graphics.&lt;/EM&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Apparently some functionality was implemented to create a &lt;A href="https://pro.arcgis.com/en/pro-app/latest/get-started/whats-new-in-arcgis-pro.htm#:~:text=to%20default%20values.-,Thematic%20map%20series,-You%20can%20now" target="_self"&gt;Thematic Map Series&lt;/A&gt;. But I don't think that applies to graphics, only layers in the TOC. I hope work continues in this area because I need this ALL THE TIME!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 16:22:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/map-series-page-editing/idc-p/1411046#M29416</guid>
      <dc:creator>FourCornersMapping</dc:creator>
      <dc:date>2024-04-17T16:22:58Z</dc:date>
    </item>
  </channel>
</rss>

