diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-06-02 16:18:46 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-06-02 16:33:56 -0700 |
commit | e802aedb8cf7678cacb92cd02e2e35d051310252 (patch) | |
tree | 623492c0835899bcd473b071720cc5b2bde1c76f /bin/render.cpp | |
parent | 7d110f5b149bfd78eca8a2e3e0cb071ae5027348 (diff) | |
download | qtlocation-mapboxgl-e802aedb8cf7678cacb92cd02e2e35d051310252.tar.gz |
[core, node, android] Remove used "base" parameter from setStyleJSON
Diffstat (limited to 'bin/render.cpp')
-rw-r--r-- | bin/render.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/render.cpp b/bin/render.cpp index 70571f7f75..a43bf32ddd 100644 --- a/bin/render.cpp +++ b/bin/render.cpp @@ -86,7 +86,7 @@ int main(int argc, char *argv[]) { HeadlessView view(pixelRatio, width, height); Map map(view, fileSource, MapMode::Still); - map.setStyleJSON(style, "."); + map.setStyleJSON(style); map.setClasses(classes); map.setLatLngZoom({ lat, lon }, zoom); |