Make 403 message more clear

This commit is contained in:
Logan Williams
2023-05-02 10:54:42 +02:00
parent e2ef4cdb4b
commit 2d7d22236f
3 changed files with 102 additions and 2 deletions

View File

@@ -26,7 +26,7 @@
significantly around the world. This tool can be used to find possible
leads, but it should not be considered exhaustive or used to exclude
areas of interest. For any bugs or new preset requests, contact
<a href="mailto:logan@bellingcat.com">logan@bellingcat.com</a>. >
<a href="mailto:logan@bellingcat.com">logan@bellingcat.com</a>.
</p>
</v-card-text>
<div class="readmore" @click="toggle" v-if="!expanded">

View File

@@ -212,6 +212,18 @@ export default [
},
],
},
{
name: "One way road",
type: "line",
method: "OR",
filters: [
{
parameter: "oneway",
comparison: "=",
value: "yes",
},
],
},
{
name: "Sidewalk",
type: "line",
@@ -228,6 +240,33 @@ export default [
},
],
},
{
name: "Pedestrian path",
type: "line",
method: "OR",
filters: [
{
parameter: "highway",
comparison: "=",
value: "footway",
},
{
parameter: "highway",
comparison: "=",
value: "path",
},
{
parameter: "highway",
comparison: "=",
value: "steps",
},
{
parameter: "highway",
comparison: "=",
value: "pedestrian",
},
],
},
{
name: "Cliff",
type: "line",
@@ -240,6 +279,17 @@ export default [
},
],
},
{
name: "Waterway",
type: "line",
method: "OR",
filters: [
{
parameter: "waterway",
comparison: "is not null",
},
],
},
{
name: "Park",
type: "polygon",
@@ -293,6 +343,30 @@ export default [
},
],
},
{
name: "Water body",
type: "polygon",
method: "OR",
filters: [
{
parameter: "natural",
comparison: "=",
value: "water",
},
],
},
{
name: "Plaza/square",
type: "polygon",
method: "OR",
filters: [
{
parameter: "place",
comparison: "=",
value: "square",
},
],
},
{
name: "Building",
type: "polygon",
@@ -475,6 +549,29 @@ export default [
},
],
},
{
name: "Supermarket",
type: "any",
method: "OR",
filters: [
{
parameter: "shop",
comparison: "=",
value: "supermarket",
},
],
},
{
name: "Shop (any)",
type: "any",
method: "OR",
filters: [
{
parameter: "shop",
comparison: "is not null",
},
],
},
{
name: "Fountain",
type: "any",