summaryrefslogtreecommitdiff
path: root/platform/qt/src/qmapboxgl.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update qt conversion to use runtime polymorphic conversionupstream/runtime-polymorphic-conversion-nodeAnand Thakker2017-10-141-0/+10
|
* [core] Remove std:: namespace for some functionsThiago Marcos P. Santos2017-08-071-2/+3
| | | | They are not available on Android + GCC (needed by Qt)
* [all] Merge View into RendererBackendJohn Firebaugh2017-07-261-1/+0
|
* [qt] manage backendscope in renderer frontendIvo van Dongen2017-07-251-3/+1
|
* [Qt] Avoid using brace-list init ctor in QMapboxGLThiago Marcos P. Santos2017-07-191-8/+8
|
* [android][glfw][ios][macos][node][qt] rename backend to renderer backendIvo van Dongen2017-07-181-1/+1
|
* [qt] rendering interface changesIvo van Dongen2017-07-181-3/+19
|
* [android][glfw][ios][macos][node][qt] split backend from mapobserverIvo van Dongen2017-07-181-1/+1
|
* [Qt] Fix docs warningsThiago Marcos P. Santos2017-07-131-5/+5
|
* [Qt] Share the DefaultFileSource for all QMapboxGL instancesThiago Marcos P. Santos2017-07-131-1/+19
| | | | | | Fix issues of concurrent access to the sqlite cache. Fixes #9108.
* [Qt] Do not return a valid mbgl::Annotation if conversion failsBruno de Oliveira Abinader2017-07-121-7/+7
|
* [core] GCC 4.9 shadow member warningsBruno de Oliveira Abinader2017-07-121-14/+14
|
* [core] Move setStyleJSON/URL to Style; add Map::setStyleJohn Firebaugh2017-06-221-4/+4
|
* [all] Promote Style to public APIJohn Firebaugh2017-06-221-16/+17
|
* [core] Added Backend::{assume,set}ViewportBruno de Oliveira Abinader2017-06-131-2/+2
|
* [core, node, darwin, android, qt] Make image ID part of ImageJohn Firebaugh2017-05-161-3/+4
| | | | More like Source and Layer.
* [qt] Un-deprecate QMapboxGL::setTransitionOptionsJohn Firebaugh2017-05-151-5/+2
| | | | It's still relevant for runtime-styling driven paint property changes.
* [core, node, darwin, qt] Remove support for paint classesJohn Firebaugh2017-05-151-83/+2
|
* [Qt] Make it possible to add a layer before another layerThiago Marcos P. Santos2017-05-111-5/+7
|
* [core] Remove StyleSourcedAnnotation supportJohn Firebaugh2017-05-101-3/+0
| | | | The functionality this provided has been subsumed by the runtime styling API.
* [core, android] Factor JSON string conversionsJohn Firebaugh2017-05-081-1/+1
| | | | | | | | | | | 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.
* Revert "[Qt] Don't regen BackendScope on every QMapboxGL::render() call"Bruno de Oliveira Abinader2017-05-041-3/+1
| | | | This reverts commit 806da5d940aed7021f921ab98b9ae8e4e364f732.
* [Qt] Don't regen BackendScope on every QMapboxGL::render() callBruno de Oliveira Abinader2017-05-041-1/+3
|
* [Qt] Handle extrusion filtersThiago Marcos P. Santos2017-05-021-0/+4
|
* [all] Rationalize style::ImageJohn Firebaugh2017-04-241-5/+5
| | | | | | | A style has a collection of images, just as it has collections of sources and layers. * Name things appropriately * Use std::unique_ptr
* [core] Remove non-Map-dependent projection methods from MapJohn Firebaugh2017-04-181-3/+4
|
* [core] Tighten geo.hpp ctorsBruno de Oliveira Abinader2017-04-141-5/+5
|
* [all] Remove redundant scale-related camera methodsJohn Firebaugh2017-04-131-3/+3
| | | | We don't need to have two different measurement systems for map zoom.
* [Qt] Sanitize QSize → mbgl::Size conversionBruno de Oliveira Abinader2017-04-101-10/+20
|
* [all] Make LatLng coordinates read-onlyJohn Firebaugh2017-04-061-7/+7
|
* [core] Privatize OpenGL/Context headersKonstantin Käfer2017-03-281-9/+5
|
* [core] Move OpenGL extension initialization to BackendKonstantin Käfer2017-03-231-0/+14
|
* [core] Ensure that a BackendScope exists when doing GL callsKonstantin Käfer2017-03-231-0/+4
|
* [all] Replace Result<T> with optional<T> plus out Error parameterJohn Firebaugh2017-03-231-7/+11
|
* [qt] Add setFramebufferObject() for correct FBO binding restorationKonstantin Käfer2017-03-221-6/+24
|
* [Qt] Updated MapObserver::onSourceChangedBruno de Oliveira Abinader2017-03-211-1/+1
|
* [Qt] Update changes in MapObserver::onDidFailLoadingMapBruno de Oliveira Abinader2017-03-171-1/+1
|
* [Qt] Support mbgl::MapObserverBruno de Oliveira Abinader2017-03-151-28/+78
|
* [Qt] FBO handling should happen outside of QMapboxGL::renderBruno de Oliveira Abinader2017-03-011-23/+1
|
* [Qt] Document QMapbox + qdoc fixesBruno de Oliveira Abinader2017-02-221-2/+2
|
* [Qt] Added missing conversion helpersBruno de Oliveira Abinader2017-02-211-0/+26
|
* [ios,macos,android,qt] use shared threadpoolKonstantin Käfer2017-02-201-2/+3
|
* [Qt] Added QMapboxGL::sourceExistsBruno de Oliveira Abinader2017-02-091-0/+8
|
* [Qt] Moved GeoJSON-related conversion functions to qt_geojson.hppBruno de Oliveira Abinader2017-02-081-59/+17
|
* [Qt] Added QMapboxGL::layerExistsBruno de Oliveira Abinader2017-02-081-1/+9
|
* [Qt] Refactor QMapbox Annotations APIBruno de Oliveira Abinader2017-01-261-36/+96
|
* [Qt] Add more docsThiago Marcos P. Santos2017-01-091-76/+455
|
* [Qt] Removed unused methodsThiago Marcos P. Santos2017-01-091-15/+0
| | | | They will never return true because Qt only does client side animations.
* [Qt] Expose method for changing the base API URLThiago Marcos P. Santos2017-01-051-0/+23
| | | | Useful for redirecting to a cache server or debugging.
* [Qt] Add docs for QMapboxGLThiago Marcos P. Santos2017-01-031-34/+195
|