diff --git a/webapp/public/neology-1.jpg b/webapp/public/neology-1.jpg
new file mode 100644
index 0000000..5d48547
Binary files /dev/null and b/webapp/public/neology-1.jpg differ
diff --git a/webapp/public/other-1.jpeg b/webapp/public/other-1.jpeg
new file mode 100644
index 0000000..707c2cd
Binary files /dev/null and b/webapp/public/other-1.jpeg differ
diff --git a/webapp/src/components/OSMTagSelector.vue b/webapp/src/components/OSMTagSelector.vue
new file mode 100644
index 0000000..81d0c8a
--- /dev/null
+++ b/webapp/src/components/OSMTagSelector.vue
@@ -0,0 +1,115 @@
+
+
+
+
+ Choose Brand
+
+
+
+ {{ brand.nickname }}
+
+
+
+
+
+
+
+
+ {{ selectedBrand.nickname }}
+
+ man_made=surveillance
+ surveillance:type=ALPR
+ camera:mount=pole
+ camera:type=fixed
+ surveillance=traffic
+ surveillance:zone=traffic
+ brand={{ selectedBrand.name }}
+ brand:wikidata={{ selectedBrand.wikidata }}
+
+
+
+ Please let us know by contacting us or by contributing to the project.
+
+
+
+
+
+
+
+
+
diff --git a/webapp/src/types.ts b/webapp/src/types.ts
index 9731520..de3b320 100644
--- a/webapp/src/types.ts
+++ b/webapp/src/types.ts
@@ -5,3 +5,10 @@ export interface ALPR {
tags: Record;
type: string;
};
+
+export interface WikidataItem {
+ name: string;
+ nickname: string;
+ wikidata: string;
+ exampleImage: string|undefined;
+}
diff --git a/webapp/src/views/ReportView.vue b/webapp/src/views/ReportView.vue
index dfcdd8e..0eb28a1 100644
--- a/webapp/src/views/ReportView.vue
+++ b/webapp/src/views/ReportView.vue
@@ -48,46 +48,11 @@
To add the ALPR, click the Point button in the top left corner of the editor, then click on the location of the ALPR on the map. In the popup that appears, paste one of the following sets of tags based on the brand of the ALPR:
-
-
-
Flock Safety
-
- man_made=surveillance
- surveillance:type=ALPR
- camera:mount=pole
- camera:type=fixed
- surveillance=traffic
- surveillance:zone=traffic
- brand=Flock Safety
- brand:wikidata=Q108485435
-
-
-
-
-
Motorola Solutions
-
- man_made=surveillance
- surveillance:type=ALPR
- camera:mount=pole
- camera:type=fixed
- surveillance=traffic
- surveillance:zone=traffic
- brand=Motorola Solutions
- brand:wikidata=Q634815
-
-
-
+
-
-
- If you've located an ALPR that isn't from Flock Safety or Motorola Solutions, you can still add it to OpenStreetMap. Just use the tags above and replace the brand name and Wikidata ID with the correct information.
-
-
+
+ After copying the tags, paste them into the Tags field in the popup.
+
@@ -115,6 +80,7 @@