use xy[0],xy[1],
This commit is contained in:
parent
941e283b81
commit
36cbcf714d
1 changed files with 7 additions and 1 deletions
|
@ -237,7 +237,13 @@ export const serve_data = {
|
|||
xy = [minX, minY];
|
||||
}
|
||||
|
||||
const fetchTile = await fetchTileData(source, sourceType, z, x, y);
|
||||
const fetchTile = await fetchTileData(
|
||||
source,
|
||||
sourceType,
|
||||
z,
|
||||
xy[0],
|
||||
xy[1],
|
||||
);
|
||||
if (fetchTile == null) return res.status(204).send();
|
||||
|
||||
let data = fetchTile.data;
|
||||
|
|
Loading…
Reference in a new issue