maping.map.on("moveend", async () => {
const bounds = maping.map.getBounds();
console.log(bounds);
const query = `
SELECT lat, lon FROM arbolado
WHERE lat BETWEEN ${bounds.getSouth()} AND ${bounds.getNorth()}
AND lon BETWEEN ${bounds.getWest()} AND ${bounds.getEast()};
`;
const result = await dbClient.query(query);
mutable puntos = result;
})