<?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 The map loads in gray in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262130#M2671</link>
    <description>&lt;P&gt;The map is coming out in gray and it does not show me the streets,&amp;nbsp;the &lt;STRONG&gt;sdk that I currently have is 30&lt;/STRONG&gt;&amp;nbsp; and this is the version of Sdk arcgis&lt;/P&gt;&lt;PRE&gt;api &lt;SPAN&gt;'com.esri.arcgisruntime:arcgis-android:100.8.0'&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;I attach evidence:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WhatsApp Image 2023-02-27 at 3.23.46 PM.jpeg" style="width: 296px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/63786i88D800DFC9CD1190/image-dimensions/296x431?v=v2" width="296" height="431" role="button" title="WhatsApp Image 2023-02-27 at 3.23.46 PM.jpeg" alt="WhatsApp Image 2023-02-27 at 3.23.46 PM.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;can someone help me please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Feb 2023 20:33:03 GMT</pubDate>
    <dc:creator>stiven</dc:creator>
    <dc:date>2023-02-27T20:33:03Z</dc:date>
    <item>
      <title>The map loads in gray</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262130#M2671</link>
      <description>&lt;P&gt;The map is coming out in gray and it does not show me the streets,&amp;nbsp;the &lt;STRONG&gt;sdk that I currently have is 30&lt;/STRONG&gt;&amp;nbsp; and this is the version of Sdk arcgis&lt;/P&gt;&lt;PRE&gt;api &lt;SPAN&gt;'com.esri.arcgisruntime:arcgis-android:100.8.0'&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;I attach evidence:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WhatsApp Image 2023-02-27 at 3.23.46 PM.jpeg" style="width: 296px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/63786i88D800DFC9CD1190/image-dimensions/296x431?v=v2" width="296" height="431" role="button" title="WhatsApp Image 2023-02-27 at 3.23.46 PM.jpeg" alt="WhatsApp Image 2023-02-27 at 3.23.46 PM.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;can someone help me please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 20:33:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262130#M2671</guid>
      <dc:creator>stiven</dc:creator>
      <dc:date>2023-02-27T20:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: The map loads in gray</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262157#M2672</link>
      <description>&lt;P&gt;I've asked someone from the Android team to look at this, but can you share the code you are using to add the basemap.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 21:24:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262157#M2672</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2023-02-27T21:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: The map loads in gray</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262174#M2673</link>
      <description>&lt;P&gt;It seems to me, you are trying to load a streets basemap, per your question.&lt;BR /&gt;&lt;BR /&gt;So I tried setting a streets basemap to mapView and load the mapView using&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;"com.esri.arcgisruntime:arcgis-android:100.8.0"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;android sdk version, and it does load fine. I used an android 30 emulator to test this.&lt;BR /&gt;&lt;BR /&gt;Below is the code snippet.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;// inflate MapView from layout&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;mMapView &lt;/SPAN&gt;= findViewById(R.id.&lt;SPAN&gt;mapView&lt;/SPAN&gt;);&lt;BR /&gt;&lt;SPAN&gt;// create a map with the a topographic basemap&lt;BR /&gt;&lt;/SPAN&gt;ArcGISMap map = &lt;SPAN&gt;new &lt;/SPAN&gt;ArcGISMap(Basemap.&lt;SPAN&gt;createStreets&lt;/SPAN&gt;());&lt;BR /&gt;&lt;SPAN&gt;// set the map to be displayed in this view&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;mMapView&lt;/SPAN&gt;.setMap(map);&lt;BR /&gt;&lt;SPAN&gt;mMapView&lt;/SPAN&gt;.setViewpoint(&lt;SPAN&gt;new &lt;/SPAN&gt;Viewpoint(&lt;SPAN&gt;34.056295&lt;/SPAN&gt;, -&lt;SPAN&gt;117.195800&lt;/SPAN&gt;, &lt;SPAN&gt;10000&lt;/SPAN&gt;));&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Priyanka_0-1677535032290.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/63801i77A12241E608E215/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Priyanka_0-1677535032290.png" alt="Priyanka_0-1677535032290.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 22:03:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/the-map-loads-in-gray/m-p/1262174#M2673</guid>
      <dc:creator>PriyankaRupani</dc:creator>
      <dc:date>2023-02-27T22:03:55Z</dc:date>
    </item>
  </channel>
</rss>

