summaryrefslogtreecommitdiff
path: root/test/fixtures/api/empty.json
Commit message (Collapse)AuthorAgeFilesLines
* [tests] Don't use icons from the style for annotationsJohn Firebaugh2015-11-301-2/+1
|
* Ensure that LiveTileData can be reparsedJohn Firebaugh2015-09-281-0/+6
Annotation tiles may become partially parsed just like regular tiles, for example if a point annotation is added to the map before the style's sprite has been loaded. In such cases, they need to be reparsed or the annotation will not be rendered. Previously, the code path for reparsing would be short-circuited by a dynamic_cast<VectorTileData*> followed by a null check. This commit removes that case and adds (back) a virtual reparse method to the TileData interface.