summaryrefslogtreecommitdiff
path: root/test/fixtures/api
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-01-11 12:52:41 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-01-13 13:40:31 -0800
commit86c8446d3a4390ff6577d070ac8b5fa3ad3c5cd1 (patch)
treeef10190d3fca34ff72b2473816901088b0b85ac2 /test/fixtures/api
parent2126e34e52dc5dd94c5a3907b240e62ee17d1e70 (diff)
downloadqtlocation-mapboxgl-86c8446d3a4390ff6577d070ac8b5fa3ad3c5cd1.tar.gz
[core] Simplify asset:// implementation
* Move asset:// URL handling to DefaultFileSource. * AssetFileSource implements FileSource interface and follows familiar implementation patterns. * Move default implementation to platform/default, zip implementation to platform/android. * Don't bother with modified / expires / etag -- assets are not cached so it doesn't matter. * Don't bother with interleaving individual IO calls on the implementation thread. That adds a lot of complexity for very little benefit.
Diffstat (limited to 'test/fixtures/api')
-rw-r--r--test/fixtures/api/annotation.json5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/fixtures/api/annotation.json b/test/fixtures/api/annotation.json
index e0792a40bf..ab83d43476 100644
--- a/test/fixtures/api/annotation.json
+++ b/test/fixtures/api/annotation.json
@@ -3,7 +3,7 @@
"sources": {
"fake": {
"type": "vector",
- "url": "asset://TEST_DATA/fixtures/tiles/streets.json"
+ "url": "fake"
}
},
"layers": [{
@@ -17,6 +17,5 @@
"paint": {
"fill-color": "rgba(255,0,0,1)"
}
- }],
- "sprite": "asset://TEST_DATA/fixtures/resources/sprite"
+ }]
}