<?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: Two Bugs with Basemap Gallery in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19899#M1775</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is my latest installment.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I linked to the onClick event of the basemapGallery Nodes:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Listen for a change of basemap (NIM080755)
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.forEach(dojo.query(".esriBasemapGalleryNode"),function(galleryNode){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(galleryNode,"onclick",function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _this._basemapButton.closeDropDown();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _this._disableAllMapFunctionUntilBasemapUpdates();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp; }); &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following function disables the map until it is done updating:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//this is a a stopgap measure until ESRI fixes NIM080755&amp;nbsp; 
&amp;nbsp; _disableAllMapFunctionUntilBasemapUpdates: function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp; var _this = this;
&amp;nbsp;&amp;nbsp;&amp;nbsp; //disable the map&amp;nbsp; it id done updating the basemap 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var mapStandby = new dojox.widget.Standby({target: _this.map.container});
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.body.appendChild(mapStandby.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.startup();
&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.show();
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var mapUpdateEndConnect = dojo.connect(_this.map,"onUpdateEnd",function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.destroy();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.disconnect(mapUpdateEndConnect);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, if all else fails I give the user an alert so they know something might have gone wrong.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//added to account for errors caused by NIM080755
&amp;nbsp;&amp;nbsp;&amp;nbsp; window.onerror = function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("An error has occured.\nYou're map will likely continue to function, but you may see inconsistent results.\nRefresh your browser to start over.");
&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 20:47:45 GMT</pubDate>
    <dc:creator>BillDaigle</dc:creator>
    <dc:date>2021-12-10T20:47:45Z</dc:date>
    <item>
      <title>Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19893#M1769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: Steaks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The first bug occurs sometimes while switching between Bing base maps.&amp;nbsp; If you cycle through them fairly fast the map will stop updating.&amp;nbsp; Sometimes it happens right away, other times it can take up to a minute of switching the maps until it stops working.&amp;nbsp; I wish I could narrow it down more and find out how its actually happening. You can test it here &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/demos/widget/widget_basemap.html"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/demos/widget/widget_basemap.html&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; Firebug returns this message when it happens.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLDivElement.removeChild]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.4 :: &amp;lt;TOP_LEVEL&amp;gt; :: line 48" data: no]&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The second bug is minor.&amp;nbsp; While switching the maps programmatically using the select method the orange border around the thumbnails inside the widget does not update.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 13:10:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19893#M1769</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-08-29T13:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19894#M1770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: jeff.pace&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I cant comment on the first, i can not see a cause for "rapidly" switching basemaps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, on the second, we have noticed this as well.&amp;nbsp; We have to do a &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.removeClass(dojo.byId(&amp;nbsp; this.layerIds[this.baseMapGallery.getSelected().title]), "esriBasemapGallerySelectedNode");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.baseMapGallery.select(this.layerIds[this.prevMap].replace("galleryNode_",""));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.addClass(dojo.byId(&amp;nbsp; this.layerIds[this.prevMap]), "esriBasemapGallerySelectedNode");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to remove the selection css, select, then add the css to the new one.&amp;nbsp; Not ideal, but hey.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 14:55:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19894#M1770</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-08-29T14:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19895#M1771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry if I resume this thread, but I think that the first problem is not as irrelevant as someone may think. If you are pointing on services hosted on arcgisonline.com the problem is a minor problem because you have to switch very rapidly to cause the error (see for example &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/demos/widget/widget_basemapManual.html"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/demos/widget/widget_basemapManual.html&lt;/A&gt;&lt;SPAN&gt; on firebug appears the error "this._map is null" switching between the two basemaps).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However if your services are hosted on a slower server the problem occours more frequently. For example I am experimenting the use of a loading icon with the base map gallery, connected through&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; dojo.connect(map, "onUpdateStart", showLoading);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; dojo.connect(map, "onUpdateEnd", hideLoading);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the "this._map is null" error appears the events are not triggered anymore and the icon stays on the screen. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have any way to fix this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thankyou in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Davide&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2012 08:48:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19895#M1771</guid>
      <dc:creator>DavideLimosani</dc:creator>
      <dc:date>2012-01-31T08:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19896#M1772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bdaigle&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been battling the first bug listed in this thread for a while now.&amp;nbsp; I have a single map app that I use to meet the mapping needs of a variety of other applications.&amp;nbsp; I use the basemap gallery to get the map loaded.&amp;nbsp; The map always opens up with the same basemap layer.&amp;nbsp; On the map's "onLoad" event, I dynamically switch the basemap to something more appropriate for the particular application; sometime imagery is best, other times topo makes more sense.&amp;nbsp; This usually works fine, but occasionally I get an error ("this._map is null") when I try to switch the basemap. The basemap still changes, but I seem to loose access to some of the map events ("onUpdate").&amp;nbsp; It helps if I add a 1000ms timeout before the changing the basemap, but it doesn't completely solve the problem.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any thoughts???&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 15:56:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19896#M1772</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-05-09T15:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19897#M1773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well not at all an accurate solution, you might be able to do some TRIAGE/damage mitigation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your showLoading function, you could set a 1000ms timer or so and have it publish an onUpdateEnd event, which would at least trick your app into thinking it was done drawing and hide the icon, even if its not done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know this does not fix the error of never properly receiving the onUpdateEnd event, but if you application relies on receiving it to continue at least this way you are stuck refreshing the browser.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Better to have a busted basemap and be able to proceed than eject.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 17:07:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19897#M1773</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2012-05-09T17:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19898#M1774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bdaigle&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the suggestion Jeff. I may try something along that line.&amp;nbsp; The root of the problem seems to be that the basemap needs to completely update before the user updates the map in any way.&amp;nbsp; The same problem occurs if the user picks one basemap, then quickly changes to another.&amp;nbsp; Give it a try on the samples if your curious.&amp;nbsp; I contacted ESRI support and they filed it as a bug (NIM080755).&amp;nbsp; It doesn't seem to be showing up in their system yet, but I assume it will soon.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried the following workaround:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;dojo.connect(this.basemapGallery,"onSelectionChange",function(){
&amp;nbsp; 
&amp;nbsp; //disable the map until it done updating the basemap 
&amp;nbsp; var mapStandby = new dojox.widget.Standby({target: _this.map.container});
&amp;nbsp; document.body.appendChild(mapStandby.domNode);
&amp;nbsp; mapStandby.startup();
&amp;nbsp; mapStandby.show();
&amp;nbsp; 
&amp;nbsp; var mapUpdateEndConnect = dojo.connect(_this.map,"onUpdateEnd",function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //disconnect the listener
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.disconnect(mapUpdateEndConnect);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //destroy the map standby
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.destroy();
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&amp;nbsp; 
});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It helps, but unfortunately the "onSelectionChange" event is somewhat slow to react, soit's still possible for the user to update that map before the standby widget pops up.&amp;nbsp; I may try using it in combination with your suggestion and see how that works for me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:47:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19898#M1774</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-10T20:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Two Bugs with Basemap Gallery</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19899#M1775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is my latest installment.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I linked to the onClick event of the basemapGallery Nodes:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Listen for a change of basemap (NIM080755)
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.forEach(dojo.query(".esriBasemapGalleryNode"),function(galleryNode){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(galleryNode,"onclick",function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _this._basemapButton.closeDropDown();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _this._disableAllMapFunctionUntilBasemapUpdates();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp; }); &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following function disables the map until it is done updating:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//this is a a stopgap measure until ESRI fixes NIM080755&amp;nbsp; 
&amp;nbsp; _disableAllMapFunctionUntilBasemapUpdates: function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp; var _this = this;
&amp;nbsp;&amp;nbsp;&amp;nbsp; //disable the map&amp;nbsp; it id done updating the basemap 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var mapStandby = new dojox.widget.Standby({target: _this.map.container});
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.body.appendChild(mapStandby.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.startup();
&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.show();
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var mapUpdateEndConnect = dojo.connect(_this.map,"onUpdateEnd",function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapStandby.destroy();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.disconnect(mapUpdateEndConnect);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, if all else fails I give the user an alert so they know something might have gone wrong.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//added to account for errors caused by NIM080755
&amp;nbsp;&amp;nbsp;&amp;nbsp; window.onerror = function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("An error has occured.\nYou're map will likely continue to function, but you may see inconsistent results.\nRefresh your browser to start over.");
&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:47:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/two-bugs-with-basemap-gallery/m-p/19899#M1775</guid>
      <dc:creator>BillDaigle</dc:creator>
      <dc:date>2021-12-10T20:47:45Z</dc:date>
    </item>
  </channel>
</rss>

