diff options
author | Bruno de Oliveira Abinader <brunoabinader@gmail.com> | 2015-06-17 10:56:18 +0300 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-08-20 11:59:07 -0700 |
commit | 98534631e068477930a32ca25459dca4f3bb6170 (patch) | |
tree | 4276174b11295db6c491f2cdf9676691ff22eae0 /test | |
parent | d1100f34de826bd8eab8a2592635af3341c92e6a (diff) | |
download | qtlocation-mapboxgl-98534631e068477930a32ca25459dca4f3bb6170.tar.gz |
Add circle render type
As specified in:
https://github.com/mapbox/mapbox-gl-style-spec/blob/v8-circle/reference/v8.json
Part of #1740.
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/style_parser/circle-blur.info.json | 7 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-blur.style.json | 18 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-color.info.json | 7 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-color.style.json | 18 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-opacity.info.json | 7 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-opacity.style.json | 18 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-radius.info.json | 7 | ||||
-rw-r--r-- | test/fixtures/style_parser/circle-radius.style.json | 18 | ||||
m--------- | test/suite | 0 |
9 files changed, 100 insertions, 0 deletions
diff --git a/test/fixtures/style_parser/circle-blur.info.json b/test/fixtures/style_parser/circle-blur.info.json new file mode 100644 index 0000000000..397e4cd4d1 --- /dev/null +++ b/test/fixtures/style_parser/circle-blur.info.json @@ -0,0 +1,7 @@ +{ + "default": { + "log": [ + [1, "WARNING", "ParseStyle", "value of 'circle-blur' must be a number, or a number function"] + ] + } +} diff --git a/test/fixtures/style_parser/circle-blur.style.json b/test/fixtures/style_parser/circle-blur.style.json new file mode 100644 index 0000000000..8140ad5e47 --- /dev/null +++ b/test/fixtures/style_parser/circle-blur.style.json @@ -0,0 +1,18 @@ +{ + "version": 8, + "sources": { + "mapbox": { + "type": "vector", + "url": "mapbox://mapbox.mapbox-terrain-v1,mapbox.mapbox-streets-v5", + "maxzoom": 14 + } + }, + "layers": [{ + "id": "circle_blur_example", + "type": "circle", + "source": "mapbox", + "paint": { + "circle-blur": null + } + }] +} diff --git a/test/fixtures/style_parser/circle-color.info.json b/test/fixtures/style_parser/circle-color.info.json new file mode 100644 index 0000000000..b1708c2f05 --- /dev/null +++ b/test/fixtures/style_parser/circle-color.info.json @@ -0,0 +1,7 @@ +{ + "default": { + "log": [ + [1, "WARNING", "ParseStyle", "color value must be a string"] + ] + } +} diff --git a/test/fixtures/style_parser/circle-color.style.json b/test/fixtures/style_parser/circle-color.style.json new file mode 100644 index 0000000000..44c32f99ce --- /dev/null +++ b/test/fixtures/style_parser/circle-color.style.json @@ -0,0 +1,18 @@ +{ + "version": 8, + "sources": { + "mapbox": { + "type": "vector", + "url": "mapbox://mapbox.mapbox-terrain-v1,mapbox.mapbox-streets-v5", + "maxzoom": 14 + } + }, + "layers": [{ + "id": "circle_color_example", + "type": "circle", + "source": "mapbox", + "paint": { + "circle-color": null + } + }] +} diff --git a/test/fixtures/style_parser/circle-opacity.info.json b/test/fixtures/style_parser/circle-opacity.info.json new file mode 100644 index 0000000000..3e8662bdbe --- /dev/null +++ b/test/fixtures/style_parser/circle-opacity.info.json @@ -0,0 +1,7 @@ +{ + "default": { + "log": [ + [1, "WARNING", "ParseStyle", "value of 'circle-opacity' must be a number, or a number function"] + ] + } +} diff --git a/test/fixtures/style_parser/circle-opacity.style.json b/test/fixtures/style_parser/circle-opacity.style.json new file mode 100644 index 0000000000..601e81a51b --- /dev/null +++ b/test/fixtures/style_parser/circle-opacity.style.json @@ -0,0 +1,18 @@ +{ + "version": 8, + "sources": { + "mapbox": { + "type": "vector", + "url": "mapbox://mapbox.mapbox-terrain-v1,mapbox.mapbox-streets-v5", + "maxzoom": 14 + } + }, + "layers": [{ + "id": "circle_opacity_example", + "type": "circle", + "source": "mapbox", + "paint": { + "circle-opacity": null + } + }] +} diff --git a/test/fixtures/style_parser/circle-radius.info.json b/test/fixtures/style_parser/circle-radius.info.json new file mode 100644 index 0000000000..7e87aa4fdb --- /dev/null +++ b/test/fixtures/style_parser/circle-radius.info.json @@ -0,0 +1,7 @@ +{ + "default": { + "log": [ + [1, "WARNING", "ParseStyle", "value of 'circle-radius' must be a number, or a number function"] + ] + } +} diff --git a/test/fixtures/style_parser/circle-radius.style.json b/test/fixtures/style_parser/circle-radius.style.json new file mode 100644 index 0000000000..a7fb28b2d3 --- /dev/null +++ b/test/fixtures/style_parser/circle-radius.style.json @@ -0,0 +1,18 @@ +{ + "version": 8, + "sources": { + "mapbox": { + "type": "vector", + "url": "mapbox://mapbox.mapbox-terrain-v1,mapbox.mapbox-streets-v5", + "maxzoom": 14 + } + }, + "layers": [{ + "id": "circle_radius_example", + "type": "circle", + "source": "mapbox", + "paint": { + "circle-radius": null + } + }] +} diff --git a/test/suite b/test/suite -Subproject af7481f223acec41421bcf9ec944651216c1358 +Subproject 303b18c915c708fd9f0eb1bd98a9262ff5f0764 |