You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered the same issue and came to the same solution. FWIW, I'm using WMTS provided by Esri, whose standards compliance can sometimes be questionable, so I can't comment on the general applicability of the fix.
On ln.70 in wmts.js
var tilematrix = this.wmtsParams.tilematrixSet + ':' + ident;
This is causing an issue for my calls to wmts services.
I fixed it by replacing this by
var tilematrix = ident;
I think this is standard behaviour for most wmts.
The text was updated successfully, but these errors were encountered: