fixed bug where wms tilesize option was ignored when setting
wms params width and height
This commit is contained in:
parent
430092c48e
commit
0a2697c4b6
@ -17,9 +17,9 @@ L.TileLayer.WMS = L.TileLayer.extend({
|
||||
var wmsParams = L.Util.extend({}, this.defaultWmsParams);
|
||||
|
||||
if (options.detectRetina && L.Browser.retina) {
|
||||
wmsParams.width = wmsParams.height = this.options.tileSize * 2;
|
||||
wmsParams.width = wmsParams.height = ((options.tileSize) ? options.tileSize : this.options.tileSize) * 2;
|
||||
} else {
|
||||
wmsParams.width = wmsParams.height = this.options.tileSize;
|
||||
wmsParams.width = wmsParams.height = (options.tileSize) ? options.tileSize : this.options.tileSize;
|
||||
}
|
||||
|
||||
for (var i in options) {
|
||||
|
Loading…
Reference in New Issue
Block a user