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/MapSe...
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)
You should be able to add Wayback imagery items from this group:
https://www.arcgis.com/home/group.html?id=0f3189e1d1414edfad860b697b7d8311#overview
Does loading one of these tiles work for you?
Otherwise you can try find the unique Id after /tile/ and add the url directly.
Thanks for the quickly response. I did try loading different tiles from that group, but all these tiles show only the latest imagery (Wayback 2024-09-19).
Closing this post, as I was able to use WebTileLayer using specific sublayer versions.