diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-02-01 20:25:55 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-02-01 20:25:55 -0800 |
commit | 52689796dfed796a1e949d39be411ccca3041933 (patch) | |
tree | 4cfc320ea66acf9d0fff21b1fa64b2a4a4cf0390 /test/fixtures | |
parent | 8aa3359ff00332ef17157bf3c4452e710cc10b23 (diff) | |
download | qtlocation-mapboxgl-52689796dfed796a1e949d39be411ccca3041933.tar.gz |
[core] Normalize only raster source tile URLs
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/style_parser/tilejson.raster.json | 8 | ||||
-rw-r--r-- | test/fixtures/style_parser/tilejson.vector.json | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/fixtures/style_parser/tilejson.raster.json b/test/fixtures/style_parser/tilejson.raster.json new file mode 100644 index 0000000000..2eb0971a03 --- /dev/null +++ b/test/fixtures/style_parser/tilejson.raster.json @@ -0,0 +1,8 @@ +{ + "minzoom": 0, + "maxzoom": 15, + "center": [ 1, 2, 3 ], + "bounds": [ 4, 5, 6, 7 ], + "attribution": "attribution", + "tiles": [ "http://a.tiles.mapbox.com/mapbox.satellite/{z}-{x}-{y}.png?access_token=key" ] +} diff --git a/test/fixtures/style_parser/tilejson.vector.json b/test/fixtures/style_parser/tilejson.vector.json new file mode 100644 index 0000000000..ea7d4bc352 --- /dev/null +++ b/test/fixtures/style_parser/tilejson.vector.json @@ -0,0 +1,8 @@ +{ + "minzoom": 0, + "maxzoom": 15, + "center": [ 1, 2, 3 ], + "bounds": [ 4, 5, 6, 7 ], + "attribution": "attribution", + "tiles": [ "http://a.tiles.mapbox.com/mapbox.streets/{z}-{x}-{y}.vector.pbf?access_token=key" ] +} |