<?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: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android in Kotlin Maps SDK Questions</title>
    <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360731#M306</link>
    <description>&lt;P&gt;You may give a try like this,&lt;/P&gt;&lt;DIV&gt;map.&lt;SPAN&gt;loadStatus&lt;/SPAN&gt;.collect &lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;if &lt;/SPAN&gt;(&lt;SPAN&gt;it &lt;/SPAN&gt;== LoadStatus.Loaded) {&lt;BR /&gt;&lt;SPAN&gt;val &lt;/SPAN&gt;envelope = map.&lt;SPAN&gt;basemap&lt;/SPAN&gt;.&lt;SPAN&gt;value&lt;/SPAN&gt;?.&lt;SPAN&gt;baseLayers&lt;/SPAN&gt;?.get(&lt;SPAN&gt;0&lt;/SPAN&gt;)?.&lt;SPAN&gt;fullExtent&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;if &lt;/SPAN&gt;(envelope != &lt;SPAN&gt;null&lt;/SPAN&gt;) {&lt;BR /&gt;map.&lt;SPAN&gt;maxExtent &lt;/SPAN&gt;= Envelope(&lt;SPAN&gt;envelope&lt;/SPAN&gt;.&lt;SPAN&gt;center&lt;/SPAN&gt;, &lt;SPAN&gt;envelope&lt;/SPAN&gt;.&lt;SPAN&gt;width &lt;/SPAN&gt;/&lt;SPAN&gt;4.0&lt;/SPAN&gt;, &lt;SPAN&gt;envelope&lt;/SPAN&gt;.&lt;SPAN&gt;height&lt;/SPAN&gt;/&lt;SPAN&gt;4.0&lt;/SPAN&gt;)&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 14 Dec 2023 05:39:15 GMT</pubDate>
    <dc:creator>ChanganShi1</dc:creator>
    <dc:date>2023-12-14T05:39:15Z</dc:date>
    <item>
      <title>Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1351818#M280</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_20231121-103442.png" style="width: 473px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/86651iE4934A4AD66DFA03/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_20231121-103442.png" alt="Screenshot_20231121-103442.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_20231121-103722.png" style="width: 473px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/86652i0BD10AF734E85AF6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_20231121-103722.png" alt="Screenshot_20231121-103722.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_20231121-103459.png" style="width: 473px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/86653i75B36F4DA55D621B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_20231121-103459.png" alt="Screenshot_20231121-103459.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to achieve something similar to the images 1 and 2, a full screen world map with fixed min zoom/scale level. But with Esri SDK I find the MapView&amp;nbsp; scrolling beyond the actual map and show the background grid. How can I achieve something like that?&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 04:41:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1351818#M280</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-11-21T04:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1352834#M282</link>
      <description>&lt;P&gt;You could set minScale and maxScale of the base layer to achieve it. You may also reset the background grid by changing the property backgroundGrid, like:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;mapView.&lt;SPAN&gt;backgroundGrid &lt;/SPAN&gt;= BackgroundGrid(&lt;BR /&gt;    &lt;SPAN&gt;color = &lt;/SPAN&gt;Color.fromRgba(&lt;SPAN&gt;167&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;214&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;255&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;255&lt;/SPAN&gt;)&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;    &lt;SPAN&gt;lineWidth = &lt;/SPAN&gt;&lt;SPAN&gt;0f&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 00:32:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1352834#M282</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2023-11-23T00:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1353365#M283</link>
      <description>&lt;P&gt;Thank you for the suggestion. I can set the min Scale and max scale. But the map still can be scrolled, and it will show the background grid by scrolling beyond the actual map image. If I disable the scroll when min scale is reached, still it can be scrolled beyond the actual map once you zoom-in and start scrolling. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 00:23:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1353365#M283</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-11-27T00:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1353640#M284</link>
      <description>&lt;P&gt;Could you try to use the &lt;STRONG&gt;InteractionOptions&amp;nbsp;&lt;/STRONG&gt;class to disable the Pan, Zoom, etc gestures you don't like the user to interact with on the map view?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 18:13:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1353640#M284</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2023-11-27T18:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1355243#M285</link>
      <description>&lt;P&gt;Does the suggestion solve your problem?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 17:04:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1355243#M285</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2023-11-30T17:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1355541#M286</link>
      <description>&lt;P&gt;Sorry, haven't given time to this issue and I haven't tried to implement the InteractionOptions. I have got few ideas (may be measure the distance from centre and stop panning once the distance is reached), but panning will disable both vertical/horizontal movement and not just the vertical movement, I do need the horizontal panning. Just gonna leave it for now!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 04:54:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1355541#M286</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-12-01T04:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1356374#M288</link>
      <description>&lt;P&gt;If you have a strong user story, we may consider adding the feature in future releases.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 16:21:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1356374#M288</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2023-12-04T16:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1357230#M290</link>
      <description>&lt;P&gt;I think having the feature to make it full screen makes the user have a more immersive and focused view of the geographical info in the map. When it's about map in android phones, I only want to display information that are relevant and not let the user get distracted from having half of the map gone out of the view due to an unintentional user action. It just doesn't look when the map is zoomed in.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 03:39:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1357230#M290</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-12-06T03:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1359852#M301</link>
      <description>&lt;P&gt;Hi, NishanKhadka:&lt;/P&gt;&lt;P&gt;My colleague pointed out that the maxExtent property of ArcGISMap may solve your problem, you could set the maxExtent property to prevent users from zooming out further. Give it a try, you can also find the reference sample &lt;A href="https://developers.arcgis.com/kotlin/sample-code/set-max-extent/" target="_self"&gt;here&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 19:10:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1359852#M301</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2023-12-12T19:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360084#M302</link>
      <description>&lt;P&gt;I did try with maxExtent property before, but I messed up the wrapAround property of the map&lt;SPAN&gt;, and vertical panning started to behave strangely when zoomed (The more you zoom the more you restrict vertical panning the in the map area). Maybe I messed up with the implementation, I will give it a try once again.&amp;nbsp;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 03:12:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360084#M302</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-12-13T03:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360140#M303</link>
      <description>&lt;P&gt;Still same results. Maybe I am setting the envelope for the maxExtent wrong. Any guidance would help.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 03:13:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360140#M303</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-12-13T03:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360731#M306</link>
      <description>&lt;P&gt;You may give a try like this,&lt;/P&gt;&lt;DIV&gt;map.&lt;SPAN&gt;loadStatus&lt;/SPAN&gt;.collect &lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;if &lt;/SPAN&gt;(&lt;SPAN&gt;it &lt;/SPAN&gt;== LoadStatus.Loaded) {&lt;BR /&gt;&lt;SPAN&gt;val &lt;/SPAN&gt;envelope = map.&lt;SPAN&gt;basemap&lt;/SPAN&gt;.&lt;SPAN&gt;value&lt;/SPAN&gt;?.&lt;SPAN&gt;baseLayers&lt;/SPAN&gt;?.get(&lt;SPAN&gt;0&lt;/SPAN&gt;)?.&lt;SPAN&gt;fullExtent&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;if &lt;/SPAN&gt;(envelope != &lt;SPAN&gt;null&lt;/SPAN&gt;) {&lt;BR /&gt;map.&lt;SPAN&gt;maxExtent &lt;/SPAN&gt;= Envelope(&lt;SPAN&gt;envelope&lt;/SPAN&gt;.&lt;SPAN&gt;center&lt;/SPAN&gt;, &lt;SPAN&gt;envelope&lt;/SPAN&gt;.&lt;SPAN&gt;width &lt;/SPAN&gt;/&lt;SPAN&gt;4.0&lt;/SPAN&gt;, &lt;SPAN&gt;envelope&lt;/SPAN&gt;.&lt;SPAN&gt;height&lt;/SPAN&gt;/&lt;SPAN&gt;4.0&lt;/SPAN&gt;)&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 Dec 2023 05:39:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1360731#M306</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2023-12-14T05:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fullscreen World Map with without showing background grids on vertical scroll up or down in Android</title>
      <link>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1361860#M310</link>
      <description>&lt;P&gt;I would get a full screen map with this, but still the following issues exist:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;WrapAronud mode -&amp;nbsp;&lt;SPAN&gt;continuous panning across the international date line is disabled. That's what maxExtent property is supposed to do I believe.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;maxExtent scaling itself with zoom levels has issues. When zoomed in, I cannot access the parts of the map close to the map boundaries. And this keeps on increasing as I zoom in further.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 17 Dec 2023 23:33:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/kotlin-maps-sdk-questions/fullscreen-world-map-with-without-showing/m-p/1361860#M310</guid>
      <dc:creator>NishanKhadka</dc:creator>
      <dc:date>2023-12-17T23:33:47Z</dc:date>
    </item>
  </channel>
</rss>

