Running into a browser caching issue with Esri's leaflet api. Need something similar to the ArcGIS API for javascript.
ArcGISDynamicMapServiceLayer | API Reference | ArcGIS API for JavaScript
Thanks!
Jeff
it looks like the jsapi is just adding a unique throwaway parameter '_ts' and setting it with a timestamp to dirty up their requests.
we could do the same thing here:
var params = { _ts: Date().now(), bbox: [sw.x, sw.y, ne.x, ne.y].join(','), // ... };
if you can log an issue in our repository in github, i'd be happy to help.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.