Hi there, from my Exp Builder application (enterprise) I am loading different kind of items (layer, tile, wms, wmts, ..). When I add a WMTS like the Wayback Imagery (2023-12-07) with url: https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/56102/%7Blevel%7D/%7Brow%7D/%7Bcol%7D
I noticed that the layer.title says: "World Imagery (Wayback 2024-09-19)" once the layer is loaded
So, if I try to load any other Wayback WMTS (different date) looks like it always is loading the World Imagery (Wayback 2024-09-19)
My question is: Is there a way to load explicitly a Wayback Imagery for a especific time ?
Note: I am loading these WMTS with:
// Checks if the incomming url (origin) comes from WMTS
if (origin === OriginUrl.WMTS) {
layer = new WMTSLayer({ url: refURL.current.value })
}
// Just to check values
console.log(layer)
// Then loading this layer to my mapView
mapView.map.add(layer)