1
0
forked from MTSR/mapserver

fix coord lookup

This commit is contained in:
NatureFreshMilk 2019-02-22 12:53:08 +01:00
parent b4425fe008
commit ddd0213629
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ var AbstractGeoJsonOverlay = L.LayerGroup.extend({
var z2 = parseInt(max.lat);
api.getMapObjects(
x1, y1, y1,
x1, y1, z1,
x2, y2, z2,
this.type)
.then(function(objects){

View File

@ -73,7 +73,7 @@ var AbstractIconOverlay = L.LayerGroup.extend({
var z2 = parseInt(max.lat);
api.getMapObjects(
x1, y1, y1,
x1, y1, z1,
x2, y2, z2,
this.type)
.then(function(objects){