Hello,
what’s the correct way to change the Crs of WMS Layer after it is loaded.
The following code doesn’t work (version 14.2.1) :
async Task changeSrid(int newSrid) { if (srid == newSrid) return; srid = newSrid; var wasOpen = this.IsOpen; await this.OpenAsync(); // doesn't matter this.Crs = $"EPSG:{newSrid}"; }
If I check the requested url in SendingHttpRequest - the Crs is no changed.
Regards
Torsten