summaryrefslogtreecommitdiff
path: root/src/mbgl/style/conversion/json.hpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] make style/conversion.hpp implementation privateKonstantin Käfer2018-08-191-1/+1
|
* [core] Eliminate setProperty & co.John Firebaugh2018-08-131-0/+2
|
* Replace compile-time polymorphism with runtime polymorphism in the ↵John Firebaugh2017-10-231-1/+1
| | | | conversion system
* [core, android] Factor JSON string conversionsJohn Firebaugh2017-05-081-0/+28
This adds a `convertJSON` template, to be used like: Error error optional<Foo> foo = convertJSON<Foo>(string, error); Internally, it parses the string with RapidJSON and then calls `convert<Foo>(parsed, error)`. While here, rationalize GeoJSON converters and fix error handling for Tileset conversion in OfflineDownload.