diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2018-01-24 09:01:48 -0800 |
---|---|---|
committer | Minh Nguyễn <mxn@1ec5.org> | 2018-01-24 10:21:01 -0800 |
commit | 703c73fda83f71552936cc2568d2e89137b3ba9c (patch) | |
tree | 39bd0c0e80b17d8eac7c6d4c988a48878baa7c0f /platform | |
parent | 25b85e43bd10375aa4aad4147661381f98e020b3 (diff) | |
download | qtlocation-mapboxgl-703c73fda83f71552936cc2568d2e89137b3ba9c.tar.gz |
[ios, macos] Removed heatmap layer suppression from Darwin code generator
Diffstat (limited to 'platform')
-rwxr-xr-x | platform/darwin/scripts/generate-style-code.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/platform/darwin/scripts/generate-style-code.js b/platform/darwin/scripts/generate-style-code.js index e7434a461b..a7804ac948 100755 --- a/platform/darwin/scripts/generate-style-code.js +++ b/platform/darwin/scripts/generate-style-code.js @@ -14,9 +14,6 @@ const suffix = 'StyleLayer'; let spec = _.merge(require('../../../scripts/style-spec'), require('./style-spec-overrides-v8.json')); -// Temporarily ignore layer types defined in the style specification but not yet supported in mbgl. -delete spec.layer.type.values.heatmap; - // Rename properties and keep `original` for use with setters and getters _.forOwn(cocoaConventions, function (properties, kind) { _.forOwn(properties, function (newName, oldName) { |