1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
// query
[out:json][timeout:25];
(
  node["cemetery"="grave"]({{bbox}});
  node["historic"="memorial"]({{bbox}});
);
 
 
// print results
(._; >;);
 
out meta;
 
{{style:
 
  node[historic]{
    fill-color: blue;
    width: 1;
    fill-opacity: 0.3;
    }
 
  node[cemetery]{
    fill-color: red;
    width: 1;
    fill-opacity: 0.3;
    }
 
}}
300 m
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet