diff --git a/data/presets.yaml b/data/presets.yaml index 4ba3cc054..18ab20be9 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2612,6 +2612,10 @@ en: name: Service Area # 'terms: services,travel plaza,service station' terms: '' + highway/speed_camera: + # highway=speed_camera + name: Speed Camera + terms: '' highway/steps: # highway=steps name: Steps diff --git a/data/presets/presets.json b/data/presets/presets.json index b0555f4cb..275bfe9aa 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -5517,6 +5517,20 @@ ], "name": "Service Area" }, + "highway/speed_camera": { + "icon": "attraction", + "geometry": [ + "point" + ], + "fields": [ + "ref" + ], + "tags": { + "highway": "speed_camera" + }, + "terms": [], + "name": "Speed Camera" + }, "highway/steps": { "icon": "highway-steps", "fields": [ diff --git a/data/presets/presets/highway/speed_camera.json b/data/presets/presets/highway/speed_camera.json new file mode 100644 index 000000000..aaaddb057 --- /dev/null +++ b/data/presets/presets/highway/speed_camera.json @@ -0,0 +1,15 @@ +{ + "icon": "attraction", + "geometry": [ + "point" + ], + "fields": [ + "ref" + ], + "tags": { + "highway": "speed_camera" + }, + "terms": [ + ], + "name": "Speed Camera" +} diff --git a/data/taginfo.json b/data/taginfo.json index 6430fc7a5..e798291ea 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -1190,6 +1190,10 @@ "key": "highway", "value": "services" }, + { + "key": "highway", + "value": "speed_camera" + }, { "key": "highway", "value": "steps" diff --git a/dist/locales/en.json b/dist/locales/en.json index d19c396bc..f9ab8a57b 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -3044,6 +3044,10 @@ "name": "Service Area", "terms": "services,travel plaza,service station" }, + "highway/speed_camera": { + "name": "Speed Camera", + "terms": "" + }, "highway/steps": { "name": "Steps", "terms": "stairs,staircase"