<?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>topic Re: Find map limits of a map serie (IndexLayer python) in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605648#M94950</link>
    <description>&lt;P&gt;You don't have to use Python for this, if I understand you correctly.&lt;/P&gt;&lt;P&gt;You can instead use&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/layouts/customizing-your-map-extent.htm" target="_blank" rel="noopener"&gt;Map frame constraints—ArcGIS Pro | Documentation&lt;/A&gt;&amp;nbsp;to make the extent of the minimap match that of the main map.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="linkedmap.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130149iB37BC75498630F3C/image-size/large?v=v2&amp;amp;px=999" role="button" title="linkedmap.gif" alt="linkedmap.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Apr 2025 13:23:10 GMT</pubDate>
    <dc:creator>AlfredBaldenweck</dc:creator>
    <dc:date>2025-04-14T13:23:10Z</dc:date>
    <item>
      <title>Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605625#M94949</link>
      <description>&lt;P&gt;First I'm sorry about my English level and maybe the wrong place to post my subject (I've looked about the good place but didn't find it)&lt;/P&gt;&lt;P&gt;I created a map serie witch find its index on a layer. On thit serie I put an index grid witch will be the base of an second maps serie (Some people told me that's not possible but it works good). I created a spatial joint on this grid and a page request on it because I want to keep the index for ma second serie.&lt;/P&gt;&lt;P&gt;The&amp;nbsp; problem is, I can't center my mini map on the index of first serie, so I would like to retrieve the currents limits of the first serie and put it as limits of second mini map by python.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried by camera and the cartographic window but the geography returned is not in the good system (I'm workin with 'Lambert 2008', not with decimal degrees).&lt;/P&gt;&lt;P&gt;I'm not sure to find the information by the way used with the code at the end of post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Somebody can help me ton fond the good way ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy

# ---------------------
# Liste des constantes
# ---------------------

layout_name = "PARIS2733_Atlas masses d'eau (page de garde)"

# -------------------------
# Accéder au projet actuel
# -------------------------

projet = arcpy.mp.ArcGISProject("CURRENT") #'print(projet)' renvoie l'adresse de stockage

# ---------------------------------------------------
# Récupération du layout de la première mise en page
# ---------------------------------------------------

layout = projet.listLayouts(layout_name)[0] # Le [0] est obligatoire même si n'y a qu'une ligne, sans ce paramètre on récupère une liste et non un layout
index_layer = layout.mapSeries.indexLayer
#field_names = [field.name for field in arcpy.ListFields(index_layer)]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 12:46:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605625#M94949</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-04-14T12:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605648#M94950</link>
      <description>&lt;P&gt;You don't have to use Python for this, if I understand you correctly.&lt;/P&gt;&lt;P&gt;You can instead use&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/layouts/customizing-your-map-extent.htm" target="_blank" rel="noopener"&gt;Map frame constraints—ArcGIS Pro | Documentation&lt;/A&gt;&amp;nbsp;to make the extent of the minimap match that of the main map.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="linkedmap.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130149iB37BC75498630F3C/image-size/large?v=v2&amp;amp;px=999" role="button" title="linkedmap.gif" alt="linkedmap.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 13:23:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605648#M94950</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-04-14T13:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605663#M94951</link>
      <description>&lt;P&gt;Thank you for your answer, I'm using a single map to make two map series :&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first one looks like that and the minimap works.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VanGoethemNicolas_0-1744638519743.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130154i51EE51B115E73FE5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VanGoethemNicolas_0-1744638519743.png" alt="VanGoethemNicolas_0-1744638519743.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The second one is based on the grid of first one to give that result (cut on the first maps serie) :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VanGoethemNicolas_1-1744638645087.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130155i7399A301228D1A74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VanGoethemNicolas_1-1744638645087.png" alt="VanGoethemNicolas_1-1744638645087.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I would like to have a zoom as the first main map but on the second minimap but the scale works with the index of the actual map serie witch is the second one. So the zoom is both, bigger or lower than wanted.&lt;/P&gt;&lt;P&gt;Exemple if center with the map frame linked and the layer :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VanGoethemNicolas_2-1744639171836.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130156i5F5B078301978A39/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VanGoethemNicolas_2-1744639171836.png" alt="VanGoethemNicolas_2-1744639171836.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VanGoethemNicolas_3-1744639223527.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130157i2E1BCB9CC4A2F1F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VanGoethemNicolas_3-1744639223527.png" alt="VanGoethemNicolas_3-1744639223527.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VanGoethemNicolas_4-1744639250578.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130158i9446D3E22CD43035/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VanGoethemNicolas_4-1744639250578.png" alt="VanGoethemNicolas_4-1744639250578.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It's why i decided to use python because I've no idea how to fix it without code.&lt;/P&gt;&lt;P&gt;Thank you for the next answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 14:05:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605663#M94951</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-04-14T14:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605821#M94965</link>
      <description>&lt;P&gt;Oh, I think I understand.&lt;/P&gt;&lt;P&gt;You have a few options here, but both of them involve &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/layouts/create-a-map-series.htm#:~:text=UTM%20Zone.-,Map%20extent,-For%20each%20page" target="_blank" rel="noopener"&gt;setting the map series's extent&lt;/A&gt; and are essentially the same thing.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_0-1744663050008.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130197i3F3404D6C24E11B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_0-1744663050008.png" alt="AlfredBaldenweck_0-1744663050008.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Set the margin size to 0%&lt;/LI&gt;&lt;LI&gt;Resize the map frame so that it all-but matches the index feature.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_1-1744663266091.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130198i8A073410D99C785B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1744663266091.png" alt="AlfredBaldenweck_1-1744663266091.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Index Feature is in purple&lt;/LI&gt;&lt;LI&gt;Set up your extent indicator&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="extent.gif" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130200i5B7561DC49EE4BAC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="extent.gif" alt="extent.gif" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The other option is to do basically the same thing, but manually set the scale. In this example, the 0% margin gave me a scale of 1:906,000, but I found I preferred 1:910,000 instead. It gave me basically the same effect, but it also let me see just a bit outside the index feature.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 20:47:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605821#M94965</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-04-14T20:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605912#M94981</link>
      <description>&lt;P&gt;I've already get it but it works only with the main frame :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VanGoethemNicolas_0-1744701465602.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130212iFCC8286773653C54/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VanGoethemNicolas_0-1744701465602.png" alt="VanGoethemNicolas_0-1744701465602.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I checked the spatial ref in the facultative options and choose the spatial ref of the first index but the mini map doesn't want to center itself on the first mapSerie index :'( .&amp;nbsp;&lt;BR /&gt;I think that the minimap stay center on the first mapSerie scale (global) and not on the new one (grid_index with spatial join and page request on the first mapSerie index). The grid is correctly cut but the minimap still fixed on the entire grid index.&lt;/P&gt;&lt;P&gt;Thank for the help, my project could be work by using some maps or project but it looks possible to make what I want and keep an automatic update of my map &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 07:40:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1605912#M94981</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-04-15T07:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1606526#M95025</link>
      <description>&lt;P&gt;I'm sorry, I'm still not sure if I'm following. It sounds like you want the center of the minimap to move with the main map, and for the extent indicator to match the index feature exactly?&lt;/P&gt;&lt;P&gt;If that's the case, just combine both my answers.&lt;/P&gt;&lt;P&gt;I have my minimap and main map set up like in my second answer here:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_0-1744819283587.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130354i08A03901F05BBC96/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_0-1744819283587.png" alt="AlfredBaldenweck_0-1744819283587.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can then combine that with a linked center to preserve the scale but still move the camera:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_1-1744819424952.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130355i26DF74DDB6187032/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1744819424952.png" alt="AlfredBaldenweck_1-1744819424952.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mapserieslink.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130356iA2AF70321A88EA82/image-size/large?v=v2&amp;amp;px=999" role="button" title="mapserieslink.gif" alt="mapserieslink.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 16:08:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1606526#M95025</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-04-16T16:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1606788#M95044</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Thanks for the answer. The problem is exactly that, the entity in the grid doesn't stay fixed in the mini map.&lt;/P&gt;&lt;P&gt;I can't give more screenshot today because of a network anomaly are blocking my access to the BDD.&lt;BR /&gt;In my project, the first series of maps contain one mini map with a global view on the entities, each page of this series is an entity (not from a grid) so the main map frame is a zoom on the selected entity. Each page is the first page of my second series of maps. It is also why the grid of the second series of maps is on my first series (font are cut by first series and grid to by a page request). The firs mini map is ok because of the same for all pages except the indicator witch one moving when I change the selected page (Figure : first map posted here)&lt;/P&gt;&lt;P&gt;In the same project and with the same map, I created a second series of map and keep the first one ON. This second one is based on the global grid witch one based on the global layer of the first series but correctly cut by the first series (I didn't cut the second series on its index to keep the layout of the first one). So it's impossible to show the good entity. I would like the mini map stays fixed on the entity selected by the firts series of map (Figure : your first one in the last exemple), your second exemple is what I have as a result but not what I want.&lt;/P&gt;&lt;P&gt;The problem is that I've no layer cut for each entity and so ArcGis use the global squale of the first series of map.&lt;/P&gt;&lt;P&gt;Hope my message est more clear than the last one &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 08:10:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1606788#M95044</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-04-17T08:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1607017#M95068</link>
      <description>&lt;P&gt;Ok, I think I understand now. You want to show which square of the grid the camera is in.&lt;/P&gt;&lt;P&gt;This is a no-code solution and it's kind of outside the box.&lt;/P&gt;&lt;P&gt;In short, we're not going to use an extent indicator at all, but a &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/tables/joins-and-relates.htm#GUID-7B11EAA4-35E0-4B8D-AFB6-4A435761574B" target="_blank" rel="noopener"&gt;spatial join&lt;/A&gt;.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create your index features&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_0-1744907891750.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130456i638ABBA491AF240C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_0-1744907891750.png" alt="AlfredBaldenweck_0-1744907891750.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Create your grid&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_1-1744907919847.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130457i6645982F7D0B11B8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1744907919847.png" alt="AlfredBaldenweck_1-1744907919847.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Duplicate your grid layer and change its symbology to something else&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_2-1744908010854.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130458i3E0ADEA60CD69873/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_2-1744908010854.png" alt="AlfredBaldenweck_2-1744908010854.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_3-1744908021236.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130459i4B6BF50555B5A5B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_3-1744908021236.png" alt="AlfredBaldenweck_3-1744908021236.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Perform a spatial join between the second Grid layer and the index features (points, in my example)&amp;nbsp;&lt;OL&gt;&lt;LI&gt;I used&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-spatial-join.htm" target="_blank" rel="noopener"&gt;Add Spatial Join (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;, but you can also use&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/spatial-join.htm" target="_blank" rel="noopener"&gt;Spatial Join (Analysis)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_4-1744908163239.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130460iEDCE6776BD5A52DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_4-1744908163239.png" alt="AlfredBaldenweck_4-1744908163239.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Make sure you don't have anything selected when you perform the join, or else it's only going to work on what you have selected.&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Create your layout, following the steps in the other posts. I am still assuming you want the shape of the main map frame to match the minimap, but for this solution it doesn't matter.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_5-1744908253547.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130461i266682BDDCDB71AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_5-1744908253547.png" alt="AlfredBaldenweck_5-1744908253547.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Create your map series.&lt;OL&gt;&lt;LI&gt;Since I'm using a point for my index layer, I'm setting the scale to 1:100,000.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_6-1744908325136.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130462i4A89751EF6A0B9FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_6-1744908325136.png" alt="AlfredBaldenweck_6-1744908325136.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_9-1744908654266.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130465i82252C92CA27642A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_9-1744908654266.png" alt="AlfredBaldenweck_9-1744908654266.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Open the properties for the copy of the Grid with spatial join applied.&lt;/LI&gt;&lt;LI&gt;On the Page Query tab, set the field to the same field that you're using for the map series. I'm using "Name" in this case. This is pointing to the field we got from the other table when we did our spatial join.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_8-1744908594287.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130464i2533BADBBF930350/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_8-1744908594287.png" alt="AlfredBaldenweck_8-1744908594287.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;This has made it so only the features that match the index features will draw.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_10-1744908705118.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130466i7E0129A531F3FECA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_10-1744908705118.png" alt="AlfredBaldenweck_10-1744908705118.png" /&gt;&lt;/span&gt;&lt;BR /&gt;I've added an extent indicator in blue to show you how it compares.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mapseriesIndexSpatialJoin1.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130467iDC151B38016F1ECB/image-size/large?v=v2&amp;amp;px=999" role="button" title="mapseriesIndexSpatialJoin1.gif" alt="mapseriesIndexSpatialJoin1.gif" /&gt;&lt;/span&gt; &lt;/LI&gt;&lt;LI&gt;This will also work if you use lines or polygons.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_11-1744909234660.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130468i4BABEC23A7210F32/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_11-1744909234660.png" alt="AlfredBaldenweck_11-1744909234660.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_12-1744909349895.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130469iE0EB02CA04CEB24E/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_12-1744909349895.png" alt="AlfredBaldenweck_12-1744909349895.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;It also worked just fine if the shape of the map frame didn't match the grid&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_13-1744909605382.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130471iC729F43C830FC963/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_13-1744909605382.png" alt="AlfredBaldenweck_13-1744909605382.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;It also worked if the index features cross the grid features&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_15-1744909869809.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130473iB15023C8B58FBD8F/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_15-1744909869809.png" alt="AlfredBaldenweck_15-1744909869809.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_14-1744909851518.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130472i1F79D55D585378C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_14-1744909851518.png" alt="AlfredBaldenweck_14-1744909851518.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;I did have to use a &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/spatial-join.htm" target="_blank" rel="noopener"&gt;full 1:Many spatial join&lt;/A&gt; for situations where there was more than one index feature in the same grid cell&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_16-1744910216201.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/130474i08ADD3AE65DFF3ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="AlfredBaldenweck_16-1744910216201.png" alt="AlfredBaldenweck_16-1744910216201.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;See here for a related Idea to make this a little easier:&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/tie-symbology-to-page-queries/idi-p/1294543" target="_blank"&gt;Tie Symbology to Page Queries - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 17:54:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1607017#M95068</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-04-17T17:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1623002#M96561</link>
      <description>&lt;P&gt;Sorry for the time of return, I had to stopped my project for a while but I'm back. I'll check your answer but first I have to fixe my grid whish is down certainly because of conflict between two layer.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jun 2025 08:36:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1623002#M96561</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-06-12T08:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1623342#M96604</link>
      <description>&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6374221704112w720h540r961" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6374221704112" data-account="6161463677001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6161463677001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6374221704112w720h540r961');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.esri.com/t5/video/gallerypage/video-id/6374221704112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;- First part shows my first-serie index, and the maps linked. The scale are the same for all page of this serie so I've no problem whith minimap.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Second part shows my second-serie index whish is based on the grid with a spatial join with double value supported (only the squares linked at the first-serie index are showed on the mini map and full map).&lt;/P&gt;&lt;P&gt;The problem about the mini-map is that it takes the second-serie index and not the first one :'(&amp;nbsp;&lt;BR /&gt;Your solution is interesting for an next step of my job but not for this part I think.&lt;/P&gt;&lt;P&gt;Hope my video should translate correctly my words.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 07:47:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1623342#M96604</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-06-13T07:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1623402#M96612</link>
      <description>&lt;P&gt;I think there's been a miscommunication.&lt;/P&gt;&lt;P&gt;For my solution, the index feature of the map series is&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt; the grid used in your minimap. Keep the same index that you were using and unlink the two map frames.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 12:55:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1623402#M96612</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-06-13T12:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1625007#M96754</link>
      <description>&lt;P&gt;Thanks for your time, I'll try to make something works with the exemple on this topic. Just afraid about the links between my two serie which could be a source of errors.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 09:40:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1625007#M96754</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-06-19T09:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Find map limits of a map serie (IndexLayer python)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1625275#M96773</link>
      <description>&lt;P&gt;I've finaly maybe undestoud what you tried to explain... Use two different index is certainly not a good way. I'll check to apply your method on that second part of the project.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 09:19:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/find-map-limits-of-a-map-serie-indexlayer-python/m-p/1625275#M96773</guid>
      <dc:creator>VanGoethemNicolas</dc:creator>
      <dc:date>2025-06-20T09:19:37Z</dc:date>
    </item>
  </channel>
</rss>

