<?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 Runtime 200.2.0: Android Maui Map Not Loading? in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1346927#M12289</link>
    <description>&lt;P&gt;Hello&amp;nbsp;Im in the process of porting my xamarin app over to MAUI. The credentials im using are the same in both the Maui project and the Xamarin project.&amp;nbsp; I have no issues with anything map related in the xamarin project. I have not tested anything on the iOS side yet.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do not have an API key set. I didnt need one for the xamarin project so im also assuming i do not need one for the Maui Project.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In my Maui projected however im experinecing issues with the Map not loading.&lt;/P&gt;&lt;P&gt;My map is within a Grid that has "Auto" columns.&amp;nbsp; I saw a couple other posts where it was speculated this was a layout issue with MAUI. Have all the bugs been fixed surrounding this area?&lt;BR /&gt;&lt;BR /&gt;Additionally despite having entered in the proper credentials in the "MauiApp.CreateBuilder" it will prompt me to enter in my credentials.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;"Credentails Required"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;"basemaps-api.arcgis.com"&lt;BR /&gt;&lt;BR /&gt;Now im not targeting any kind of online basemaps just these... I never had any issues in xamarin has anything changed within the Maui version?&amp;nbsp;&lt;BR /&gt;_basemapOptions = new Dictionary&amp;lt;string, Basemap&amp;gt;()&lt;BR /&gt;{&lt;BR /&gt;{"Street", new Basemap(BasemapStyle.ArcGISStreets) },&lt;BR /&gt;{"Imagery", new Basemap(BasemapStyle.ArcGISImagery) },&lt;BR /&gt;{"Imagery With Labels", new Basemap(BasemapStyle.ArcGISImageryLabels) },&lt;BR /&gt;{"Oceans", new Basemap(BasemapStyle.ArcGISOceans) },&lt;BR /&gt;{"Open Street Map", new Basemap(BasemapStyle.OSMStandard) },&lt;BR /&gt;{"Streets With Relief Vector", new Basemap(BasemapStyle.ArcGISStreetsReliefBase) },&lt;BR /&gt;{"Create Terrain With Labels", new Basemap(BasemapStyle.ArcGISTerrainDetail) },&lt;BR /&gt;{"Topographic", new Basemap(BasemapStyle.ArcGISTopographic) },&lt;BR /&gt;{"Light Gray Canvas (Raster)", new Basemap(BasemapStyle.ArcGISLightGray)},&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;--- Code for the Map&lt;BR /&gt;Edit here I do have this Grid Wrapped within a RelativeLayout. The code has been Updated to reflect this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;compatibility:RelativeLayout&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Grid&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Grid&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Grid.Row="0"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.RowSpan="1"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Style="{StaticResource BaseGridStyle}"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Grid.RowDefinitions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;RowDefinition Height="35" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;RowDefinition Height="55" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;RowDefinition Height="*" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;RowDefinition Height="2*" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Grid.RowDefinitions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Grid.ColumnDefinitions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="5" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="Auto" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="*" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="Auto" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="5" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Grid.ColumnDefinitions&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;esri:MapView&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x:Name="SiteMapView"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.Row="1"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.RowSpan="4"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.Column="0"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.ColumnSpan="5"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x:FieldModifier="public"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BackgroundColor="White"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GeoViewTapped="EsriMap_GeoViewTapped"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GraphicsOverlays="{Binding GraphicsOverlays}"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Map="{Binding Map}"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ViewpointChanged="EsriMap_ViewpointChanged" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;......&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Grid&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/compatibility:RelativeLayout&amp;gt;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Nov 2023 22:12:35 GMT</pubDate>
    <dc:creator>ShaneRumbaugh</dc:creator>
    <dc:date>2023-11-07T22:12:35Z</dc:date>
    <item>
      <title>Runtime 200.2.0: Android Maui Map Not Loading?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1346927#M12289</link>
      <description>&lt;P&gt;Hello&amp;nbsp;Im in the process of porting my xamarin app over to MAUI. The credentials im using are the same in both the Maui project and the Xamarin project.&amp;nbsp; I have no issues with anything map related in the xamarin project. I have not tested anything on the iOS side yet.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do not have an API key set. I didnt need one for the xamarin project so im also assuming i do not need one for the Maui Project.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In my Maui projected however im experinecing issues with the Map not loading.&lt;/P&gt;&lt;P&gt;My map is within a Grid that has "Auto" columns.&amp;nbsp; I saw a couple other posts where it was speculated this was a layout issue with MAUI. Have all the bugs been fixed surrounding this area?&lt;BR /&gt;&lt;BR /&gt;Additionally despite having entered in the proper credentials in the "MauiApp.CreateBuilder" it will prompt me to enter in my credentials.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;"Credentails Required"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;"basemaps-api.arcgis.com"&lt;BR /&gt;&lt;BR /&gt;Now im not targeting any kind of online basemaps just these... I never had any issues in xamarin has anything changed within the Maui version?&amp;nbsp;&lt;BR /&gt;_basemapOptions = new Dictionary&amp;lt;string, Basemap&amp;gt;()&lt;BR /&gt;{&lt;BR /&gt;{"Street", new Basemap(BasemapStyle.ArcGISStreets) },&lt;BR /&gt;{"Imagery", new Basemap(BasemapStyle.ArcGISImagery) },&lt;BR /&gt;{"Imagery With Labels", new Basemap(BasemapStyle.ArcGISImageryLabels) },&lt;BR /&gt;{"Oceans", new Basemap(BasemapStyle.ArcGISOceans) },&lt;BR /&gt;{"Open Street Map", new Basemap(BasemapStyle.OSMStandard) },&lt;BR /&gt;{"Streets With Relief Vector", new Basemap(BasemapStyle.ArcGISStreetsReliefBase) },&lt;BR /&gt;{"Create Terrain With Labels", new Basemap(BasemapStyle.ArcGISTerrainDetail) },&lt;BR /&gt;{"Topographic", new Basemap(BasemapStyle.ArcGISTopographic) },&lt;BR /&gt;{"Light Gray Canvas (Raster)", new Basemap(BasemapStyle.ArcGISLightGray)},&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;--- Code for the Map&lt;BR /&gt;Edit here I do have this Grid Wrapped within a RelativeLayout. The code has been Updated to reflect this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;compatibility:RelativeLayout&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Grid&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Grid&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Grid.Row="0"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.RowSpan="1"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Style="{StaticResource BaseGridStyle}"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Grid.RowDefinitions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;RowDefinition Height="35" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;RowDefinition Height="55" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;RowDefinition Height="*" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;RowDefinition Height="2*" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Grid.RowDefinitions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Grid.ColumnDefinitions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="5" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="Auto" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="*" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="Auto" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ColumnDefinition Width="5" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Grid.ColumnDefinitions&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;esri:MapView&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x:Name="SiteMapView"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.Row="1"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.RowSpan="4"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.Column="0"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid.ColumnSpan="5"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x:FieldModifier="public"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BackgroundColor="White"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GeoViewTapped="EsriMap_GeoViewTapped"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GraphicsOverlays="{Binding GraphicsOverlays}"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Map="{Binding Map}"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ViewpointChanged="EsriMap_ViewpointChanged" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;......&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Grid&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/compatibility:RelativeLayout&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2023 22:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1346927#M12289</guid>
      <dc:creator>ShaneRumbaugh</dc:creator>
      <dc:date>2023-11-07T22:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime 200.2.0: Android Maui Map Not Loading?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1346942#M12290</link>
      <description>&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;I do not have an API key set&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;If you're using the basemap styles from ArcGIS Online you need to set an API Key (judging from your code you are).&lt;/P&gt;&lt;P&gt;100.x still had access to the old services but you should have been getting obsolete warnings for a few releases if you were still using those. In 200 those have been removed.&lt;BR /&gt;&lt;BR /&gt;If a map doesn't load, look at the output window for clues.&lt;BR /&gt;Also good to try an explicit load of the map using "await map.LoadAsync()" which should throw an error if there's an issue.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2023 22:20:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1346942#M12290</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2023-11-07T22:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime 200.2.0: Android Maui Map Not Loading?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1347189#M12292</link>
      <description>&lt;P&gt;Thanks for the quick reply! Ill try adding that API key in to see if it takes care of most of my problems!&lt;BR /&gt;&lt;BR /&gt;Update: Adding in the API key fixed all the issues thanks again!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 15:59:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/runtime-200-2-0-android-maui-map-not-loading/m-p/1347189#M12292</guid>
      <dc:creator>ShaneRumbaugh</dc:creator>
      <dc:date>2023-11-08T15:59:15Z</dc:date>
    </item>
  </channel>
</rss>

