<?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: Esri Leaflet refresh() method not working in Open Source Mapping Libraries Ques.</title>
    <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1125865#M94</link>
    <description>&lt;P&gt;Hi @Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any update on this issue? Can I provide any other information?&lt;/P&gt;&lt;P&gt;Thank you very much! Best regards!&lt;/P&gt;</description>
    <pubDate>Tue, 14 Dec 2021 15:09:44 GMT</pubDate>
    <dc:creator>PedroVenancio</dc:creator>
    <dc:date>2021-12-14T15:09:44Z</dc:date>
    <item>
      <title>Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1117190#M85</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm trying to refresh a featureLayer in Esri Leaflet 3.0.3 (but this also happens in previous versions) that calls an AGOL FeatureServer service, with the refresh() method and setInterval, but it does not work as expected.&lt;/P&gt;
&lt;P&gt;The implementation is very simple:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var testIcons = {
    'A': L.icon({
    iconUrl: 'A.png',
    iconSize:     [35, 35],
    iconAnchor:   [6, 6],
    popupAnchor:  [-3, -5],
    }),
    'B': L.icon({
    iconUrl: 'B.png',
    iconSize:     [35, 35],
    iconAnchor:   [6, 6],
    popupAnchor:  [-3, -5],
    }),
};

var testLayer = L.esri.featureLayer({
    url: 'https://services5.arcgis.com/xxxxx/ArcGIS/rest/services/NAME/FeatureServer/0',
    pointToLayer: function (geojson, latlng) {
      return L.marker(latlng, {
        icon: testIcons[geojson.properties.Status]
      });
    }
  }).addTo(map);
  testLayer.bindPopup(function (layer) {
    return L.Util.template('&amp;lt;b&amp;gt;Name:&amp;lt;/b&amp;gt; {Name}&amp;lt;/br&amp;gt;&amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; {Status}', layer.feature.properties);
  });

setInterval(function() {
    testLayer.refresh();
}, 120000);//2min&lt;/LI-CODE&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;Looking at the browser console, the layer refreshes at the given interval, but it loads the same data again. Sometimes, after a long period with the same data on map, it changes, but very outdated when compared with the service.&lt;/P&gt;
&lt;P&gt;I've some other layers working fine and configured exactly the same way, but they are MapServer services.&lt;/P&gt;
&lt;P&gt;So, my question is, refresh() method does not work well with FeatureServer services in featureLayers? The implementation needs to be different than with MapServer services? Or this should work and it can be a bug?&lt;/P&gt;
&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 20:11:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1117190#M85</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2023-08-25T20:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1117315#M86</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/464597"&gt;@PedroVenancio&lt;/a&gt;,&amp;nbsp;can you expand your code snippet into a public demo we can use to help investigate?&lt;/P&gt;&lt;P&gt;Checking our &lt;A href="https://esri.github.io/esri-leaflet/api-reference/layers/feature-layer.html" target="_self"&gt;API docs&lt;/A&gt;, indeed the FeatureLayer's &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;refresh()&lt;/FONT&gt;&lt;/STRONG&gt; is described as "Redraws all features from the feature layer that exist on the map."&lt;/P&gt;&lt;P&gt;The &lt;A href="https://github.com/Esri/esri-leaflet/blob/v3.0.3/src/Layers/FeatureLayer/FeatureManager.js#L378" target="_self"&gt;source code&lt;/A&gt; in turn appears to call the layer's &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;setWhere()&lt;/FONT&gt;&lt;/STRONG&gt;. I think we'd have to use your reproduction demo case and step through and take a closer look.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 16:31:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1117315#M86</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-11-16T16:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1117683#M87</link>
      <description>&lt;P&gt;Hi @Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a working demo: &lt;A href="https://codepen.io/PedroNGV/pen/rNzoQeE" target="_blank" rel="noopener"&gt;https://codepen.io/PedroNGV/pen/rNzoQeE&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I set the refresh to run every minute, but it does not refresh. You can see the difference comparing to when the page is reloaded (simply add a space in HTML code). Only when the layer is reloaded, the data is updated. Refresh does not take effect. Just wait about 30 minutes, to be sure the underlaying data is updated, and add a space. Or make a query directly in the service, to check when it is updated.&lt;/P&gt;&lt;P&gt;As I said before, you will notice that sometimes, after a long period with the same data on map, it changes some point(s), but very outdated when compared with the service and somehow randomly.&lt;/P&gt;&lt;P&gt;I don't see this when using MapServer services, that refresh as expected.&lt;/P&gt;&lt;P&gt;Thanks for taking a look at this!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 14:54:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1117683#M87</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2021-11-17T14:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1119145#M88</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;Since FeatureLayer's &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;refresh()&lt;/FONT&gt;&lt;/STRONG&gt; calls the layer's &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;setWhere()&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="courier new,courier"&gt;, I configured a query to filter features of the layer, and this way try to force the "refresh" at least when the filters are applied (&lt;A href="https://codepen.io/PedroNGV/pen/rNzoQeE?editors=1111" target="_blank"&gt;https://codepen.io/PedroNGV/pen/rNzoQeE?editors=1111&lt;/A&gt;). However, it does not refresh features at all, they still appears the same, returning to show all. So, filters are applied to the features loaded, and do not refresh the layer.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;To check the updated service: &lt;A href="http://bit.do/fSDPq" target="_blank"&gt;http://bit.do/fSDPq&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Can this be some kind of a bug?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 12:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1119145#M88</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2021-11-22T12:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1119961#M89</link>
      <description>&lt;P&gt;Hi Pedro,&lt;/P&gt;&lt;P&gt;Thank you for creating this, it is very helpful! I'm not familiar with the data in your FeatureServer/0 layer, so it is difficult for me to know what to look for in the source data versus what esri-leaflet is showing on the map.&lt;/P&gt;&lt;P&gt;Here are some things I want to highlight from your codepen sample.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I changed your 1min interval to a map click handler to call refresh() on the layer, just for my convenience.&lt;/LI&gt;&lt;LI&gt;In the developer network tools for your feature service layer, we are checking and comparing the &lt;STRONG&gt;GET request headers&lt;/STRONG&gt; to see what parameters were sent to the query endpoint. In this case, for a single refresh(), 4 unique requests were sent (using automated "tiling" logic).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JacobWasilkowski_0-1637770386005.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/28188iA6123C2FE95B6923/image-size/large?v=v2&amp;amp;px=999" role="button" title="JacobWasilkowski_0-1637770386005.png" alt="JacobWasilkowski_0-1637770386005.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In the developer network tools for your feature service layer, we are checking and comparing the &lt;STRONG&gt;GET response headers&lt;/STRONG&gt; to see what the feature service layer is returning. In one of the 4 responses, I routinely see 1 feature come back.&lt;/LI&gt;&lt;LI&gt;Here I am unsure how long I have to wait for the data to change what specifically about the data changes:&lt;UL&gt;&lt;LI&gt;different features?&lt;/LI&gt;&lt;LI&gt;different geometry?&lt;/LI&gt;&lt;LI&gt;different attributes?&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JacobWasilkowski_1-1637770628222.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/28189iCDEFD85DE4CEF12C/image-size/large?v=v2&amp;amp;px=999" role="button" title="JacobWasilkowski_1-1637770628222.png" alt="JacobWasilkowski_1-1637770628222.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try to recreate such a situation where you can see "before and after" network traffic that shows the data changes from the server, and compared with what is incorrectly shown on the Leaflet map?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 16:18:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1119961#M89</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-11-24T16:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1119977#M90</link>
      <description>&lt;P&gt;Pedro,&lt;/P&gt;&lt;P&gt;I spent some more time with this and I am indeed seeing odd behavior when calling refresh() or at different zoom levels (sometimes it doesn't show up), or when completely refreshing the codepen (I see an entirely different feature point on the map in a new location).&lt;/P&gt;&lt;P&gt;We will continue investigating.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 16:45:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1119977#M90</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-11-24T16:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1120033#M91</link>
      <description>&lt;P&gt;Hi @Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for taking a look at this!&lt;/P&gt;&lt;P&gt;This service represent real incidents going on, and so, they are always changing randomly. First they appear with a status of "Em Curso" = "Open"; then they change to "Em Resolução" = "In resolution"; then they change to "Em Conclusão" = "In conclusion"; and finally they &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;disappear&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; from the map/service.&lt;/P&gt;&lt;P&gt;What I see with these FeatureServer services in featureLayers, is that they do not update with refresh(), and they only are updated with complete reload of the browser, that is what you are seeing when you completely refresh the codepen. The service itself is being updated in background, but refresh() does not push these updates to the map until the entire application is reloaded.&lt;/P&gt;&lt;P&gt;You can &lt;FONT face="courier new,courier"&gt;check the updated service at: &lt;A href="http://bit.do/fSDPq" target="_blank" rel="nofollow noopener noreferrer"&gt;http://bit.do/fSDPq&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;J&lt;FONT face="courier new,courier"&gt;ust make "Query"&lt;/FONT&gt; and compare with the codepen map without reload the entire app. The fied "EstadoAgrupado" is the "Status" in codepen.&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 18:52:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1120033#M91</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2021-11-24T18:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1121933#M92</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/464597"&gt;@PedroVenancio&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you able to check the "Cache Control" setting of your FeatureServer in ArcGIS Online? I'm curious if this is playing any part in the mismatched state we see in the map sometimes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JacobWasilkowski_0-1638393531774.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/28651iED56F7852FD6A9A3/image-size/large?v=v2&amp;amp;px=999" role="button" title="JacobWasilkowski_0-1638393531774.png" alt="JacobWasilkowski_0-1638393531774.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Otherwise, we plan over the next few days to create our own debugging case to try to more consistently see the issue described here.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 21:20:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1121933#M92</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-01T21:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1121977#M93</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your help! I'm not the owner of the service, but if I understand the documentation of this feature (&lt;A href="https://doc.arcgis.com/en/arcgis-online/manage-data/control-cache.htm" target="_blank"&gt;https://doc.arcgis.com/en/arcgis-online/manage-data/control-cache.htm&lt;/A&gt;), the cache time is managed by the server. Reading this quote:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;If you stop sharing the layer with the public, cached responses temporarily remain on the CDN until the cache expires. This means if the maximum cache age is set to 5 minutes, it can take up to 5 minutes before the layer is inaccessible to the public. People signed in to the organization see the latest data, however.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I believe that if the layer was cached, it would also not be updated when refreshing the browser. So, it would wait, for instance, 5 minutes to update for every public clients, being the server controlling the 5 minutes and not the clients. I'm I right? Because here the layer is in fact updated, but the refresh() method seems to not bring the updated features to the map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;Otherwise, we plan over the next few days to create our own debugging case to try to more consistently see the issue described here.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;This would be great to check if you can reproduce it. I must say that this is not the only layer where I'm seeing this behavior. The pattern I'm seeing is, refresh() method working as expected with MapServer services, but failing&amp;nbsp;like in this sample, with FeatureServer services.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you very much! Best regards!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 22:30:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1121977#M93</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2021-12-01T22:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1125865#M94</link>
      <description>&lt;P&gt;Hi @Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any update on this issue? Can I provide any other information?&lt;/P&gt;&lt;P&gt;Thank you very much! Best regards!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 15:09:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1125865#M94</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2021-12-14T15:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1127154#M95</link>
      <description>&lt;P&gt;Hi Pedro,&lt;/P&gt;&lt;P&gt;We began doing more investigation on our side and trying out manual edits and the refresh() method, and I've a follow up question for you.&lt;/P&gt;&lt;P&gt;Is the point feature in question on your FeatureServer layer being &lt;STRONG&gt;added and deleted&lt;/STRONG&gt;, or is it being &lt;STRONG&gt;updated&lt;/STRONG&gt; with new attributes and/or geometry?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 14:55:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1127154#M95</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-17T14:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1127166#M96</link>
      <description>&lt;P&gt;Hi @Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for taking a look on this!&lt;/P&gt;&lt;P&gt;There are just attribute and geometry updates. For instance, a new point is added with it's attributes, then it is regularly updated until it is deleted / hidded (in this case I don't know if it's permanently deleted or just hidded). Anyway, once a new point is added, at least the "EstadoAgrupado" field evolves from "Em Curso", to "Em Resolução" and finally to "Em Conclusão". The point position can also change slightly in the process.&lt;/P&gt;&lt;P&gt;The FeatureServer layer exists and is static, what changes is the content, both geometries and attributes.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 15:29:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1127166#M96</guid>
      <dc:creator>PedroVenancio</dc:creator>
      <dc:date>2021-12-17T15:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Esri Leaflet refresh() method not working</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1127414#M97</link>
      <description>&lt;P&gt;Thanks for the clarifying info! We may have a fix brewing and ready soon. Look for an update early in the week.&amp;nbsp;&lt;A href="https://github.com/Esri/esri-leaflet/pull/1304" target="_blank"&gt;https://github.com/Esri/esri-leaflet/pull/1304&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Dec 2021 20:24:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/esri-leaflet-refresh-method-not-working/m-p/1127414#M97</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-18T20:24:11Z</dc:date>
    </item>
  </channel>
</rss>

