From 34cdb129c6a011cc6913175ea7e13bd0a71bb6a4 Mon Sep 17 00:00:00 2001 From: RudyTheDev Date: Mon, 10 Dec 2018 17:41:53 +0200 Subject: [PATCH] Add grass surface rendering for traffic calming areas --- modules/svg/areas.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/svg/areas.js b/modules/svg/areas.js index ca8041923..218db8658 100644 --- a/modules/svg/areas.js +++ b/modules/svg/areas.js @@ -66,6 +66,17 @@ export function svgAreas(projection, context) { { leaf_type: 'leafless', pattern: 'forest_leafless' }, { pattern: 'forest' } // same as 'leaf_type:mixed' ] + }, + traffic_calming: { + island: [ + { surface: 'grass', pattern: 'grass' }, + ], + chicane: [ + { surface: 'grass', pattern: 'grass' }, + ], + choker: [ + { surface: 'grass', pattern: 'grass' }, + ] } };