getQueryTags = (bbox) => `
//WAYS
// Roads
way["highway"](${bbox});
// Buildings
relation["building"](${bbox});
way["building"](${bbox});
// Water bodies
relation["water"](${bbox}); // all water!
relation["natural"="water"](${bbox});
way["natural"="water"](${bbox});
way["water"="pond"](${bbox});
way["water"="lake"](${bbox});
way["water"="river"](${bbox});
way["waterway"="river"](${bbox});
way["waterway"="stream"](${bbox});
// Parks and recreational areas
way["leisure"="park"](${bbox});
relation["leisure"="park"](${bbox});
// Forests
relation["natural"="forest"](${bbox});
way["natural"="forest"](${bbox});
// Railways
way["railway"](${bbox});
// all landuse
relation["landuse"="meadow"](${bbox});
way["landuse"="meadow"](${bbox});
way["landuse"="grass"](${bbox});
way["landuse"="construction"](${bbox});
// way["landuse"](${bbox});
// Query to fetch rivers and other water features (e.g., streams, lakes)
way["leisure"="pitch"](${bbox});
//trees
node["natural"="tree"](${bbox});
`