We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcf951c commit d9f136aCopy full SHA for d9f136a
src/openlayers/mapping/WebMap.js
@@ -1463,7 +1463,7 @@ export class WebMap extends Observable {
1463
} else {
1464
url += splitStr + '/1.0.0/WMTSCapabilities.xml';
1465
}
1466
- return this.getRequestUrl(url, true, proxy);
+ return this.getRequestUrl(url, proxy);
1467
1468
1469
/**
@@ -1662,7 +1662,7 @@ export class WebMap extends Observable {
1662
return;
1663
1664
if(that.isAddProxy(src, layerInfo.proxy)) {
1665
- return `${that.getProxy('png')}${encodeURIComponent(src)}`;
+ imageTile.getImage().src = `${that.getProxy('png')}${encodeURIComponent(src)}`;
1666
1667
imageTile.getImage().src = src
1668
0 commit comments