diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-06-04 10:58:11 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-06-04 10:58:11 +0200 |
commit | 580527a16c22fe41df8368492193980acc979b5a (patch) | |
tree | 4d43c243428b037d738dd8b24156c063823c521f /bin | |
parent | ef76be64a2e176ce7b985b3666eca1d8ec02b105 (diff) | |
download | qtlocation-mapboxgl-580527a16c22fe41df8368492193980acc979b5a.tar.gz |
use token replacement for icon property as well
fixes #300
Diffstat (limited to 'bin')
-rw-r--r-- | bin/style.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/style.js b/bin/style.js index 4157e1e8fe..ca42214ba0 100644 --- a/bin/style.js +++ b/bin/style.js @@ -917,7 +917,7 @@ module.exports = { "poi": { "source": "outdoors", "layer": "poi_label", - "icon": "maki", + "icon": "{{maki}}", "field": "scalerank", "value": [1, 2], "size": 12, @@ -926,7 +926,7 @@ module.exports = { "poi_3": { "source": "outdoors", "layer": "poi_label", - "icon": "maki", + "icon": "{{maki}}", "field": "scalerank", "value": 3, "size": 12, @@ -935,7 +935,7 @@ module.exports = { "poi_4_4": { "source": "outdoors", "layer": "poi_label", - "icon": "maki", + "icon": "{{maki}}", "filter": [ "and", { "field": "scalerank", "value": 4 }, @@ -947,7 +947,7 @@ module.exports = { "poi_4_16": { "source": "outdoors", "layer": "poi_label", - "icon": "maki", + "icon": "{{maki}}", "filter": [ "and", { "field": "scalerank", "value": 4 }, @@ -960,7 +960,7 @@ module.exports = { "poi_4_all": { "source": "outdoors", "layer": "poi_label", - "icon": "maki", + "icon": "{{maki}}", "field": "scalerank", "value": 4, "size": 12, @@ -969,7 +969,7 @@ module.exports = { "poi_aerodrome": { "source": "outdoors", "layer": "poi_label", - "icon": "maki", + "icon": "{{maki}}", "field": "maki", "value": "airport", "size": 24, |