summaryrefslogtreecommitdiff
path: root/platform/qt/include
Commit message (Collapse)AuthorAgeFilesLines
* [qt] Add an interface for Static renderingThiago Marcos P. Santos2018-02-091-0/+15
|
* [qt] Implement FBO handlingThiago Marcos P. Santos2018-02-091-3/+3
| | | | Needed for rendering 3D extrusions properly.
* [qt] Expose an interface to create a renderer on a separated threadThiago Marcos P. Santos2018-02-091-0/+5
| | | | If not called, it will render on the main thread as usual.
* [qt] Fix import/export symbols declarationsThiago Marcos P. Santos2018-01-102-12/+18
| | | | Fixes #10875
* [qt] Removed unused headersThiago Marcos P. Santos2018-01-082-2/+0
|
* [Qt] Update documentationBruno de Oliveira Abinader2017-11-231-0/+4
|
* [qt] use const for setting ResourceTransformRinigus2017-10-091-1/+1
|
* [qt] add ResourceTransform APIRinigus2017-10-091-0/+6
|
* [Qt] Avoid using brace-list init ctor in QMapboxGLThiago Marcos P. Santos2017-07-191-6/+23
|
* [core, node, darwin, qt] Remove support for paint classesJohn Firebaugh2017-05-151-7/+1
|
* [Qt] Make it possible to add a layer before another layerThiago Marcos P. Santos2017-05-111-2/+2
|
* [core] Remove StyleSourcedAnnotation supportJohn Firebaugh2017-05-101-6/+0
| | | | The functionality this provided has been subsumed by the runtime styling API.
* [core] Move OpenGL extension initialization to BackendKonstantin Käfer2017-03-231-2/+0
|
* [qt] Add setFramebufferObject() for correct FBO binding restorationKonstantin Käfer2017-03-221-0/+1
|
* [Qt] Support mbgl::MapObserverBruno de Oliveira Abinader2017-03-151-1/+0
|
* [Qt] Remove the QML appThiago Marcos P. Santos2017-03-062-210/+0
| | | | | We are now on Qt 5.9 and this is where the plugin will be developed from now on.
* [Qt] FBO handling should happen outside of QMapboxGL::renderBruno de Oliveira Abinader2017-03-011-8/+0
|
* [Qt] Document QMapbox + qdoc fixesBruno de Oliveira Abinader2017-02-221-16/+0
|
* [Qt] Added missing conversion helpersBruno de Oliveira Abinader2017-02-212-0/+6
|
* [Qt] Added QMapboxGL::sourceExistsBruno de Oliveira Abinader2017-02-091-0/+1
|
* [Qt] Added QMapbox::FeatureBruno de Oliveira Abinader2017-02-081-4/+18
|
* [Qt] Added QMapboxGL::layerExistsBruno de Oliveira Abinader2017-02-081-0/+1
|
* [Qt] Refactor QMapbox Annotations APIBruno de Oliveira Abinader2017-01-262-12/+65
|
* [Qt] Remove QtQuick dependency from the low-level APIThiago Marcos P. Santos2017-01-245-1/+212
| | | | Not really needed.
* [Qt] Fix build when using Qt namespacesThiago Marcos P. Santos2017-01-191-6/+6
| | | | | | Fix when building with namespaces enabled. http://wiki.qt.io/Qt_In_Namespace
* [Qt] Add more docsThiago Marcos P. Santos2017-01-091-2/+2
|
* [Qt] Removed unused methodsThiago Marcos P. Santos2017-01-091-3/+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/+4
| | | | Useful for redirecting to a cache server or debugging.
* [Qt] Move QMapboxGL stuff from QMapbox namespaceThiago Marcos P. Santos2017-01-032-31/+32
|
* [Qt] Simplify setTransitionOptionsThiago Marcos P. Santos2017-01-032-7/+1
|
* [Qt] Make some accessors Qt propertiesThiago Marcos P. Santos2017-01-031-1/+7
|
* [Qt] Removed unused methodsThiago Marcos P. Santos2017-01-031-9/+0
|
* [Qt] Implement updateSourceThiago Marcos P. Santos2016-12-141-0/+1
| | | | | It will create or update a source. Right now only GeoJSON sources are mutable and can be updated using this method.
* [qt] Added copyrightsChanged() signalBruno de Oliveira Abinader2016-12-081-0/+1
|
* [core] move gl::Context to Backend and refactor ViewKonstantin Käfer2016-10-251-2/+11
|
* [Qt] Header cleanup (#6477)Thiago Marcos P. Santos2016-09-275-217/+1
| | | Make some headers private, so we only commit with the QML API.
* [core, qt] Generalized source change notificationMinh Nguyễn2016-09-261-1/+1
| | | | This same notification can in the future be used for other changes to a source.
* [core] Source-driven attributionMinh Nguyễn2016-09-262-2/+2
| | | | | | Implemented observer callbacks so the style knows when the source’s attribution changes and the map knows when the style’s attribution changes. Also implemented a getter for a tile source’s attribution. Fixes #2723.
* [Qt] Implement QQuickMapboxGL::error{,String} propertiesBruno de Oliveira Abinader2016-09-261-1/+4
|
* [Qt] Replace remaining Mapbox-specific features as MapParameterBruno de Oliveira Abinader2016-09-261-15/+2
|
* [Qt] Added 'image' MapParameter typeBruno de Oliveira Abinader2016-09-261-0/+8
|
* [Qt] s/QQuickMapboxGL{Style,StyleProperty}/QQuickMapboxGLMapParameterBruno de Oliveira Abinader2016-09-266-124/+28
|
* [Qt] Added QQuickMapboxGLMapParameterBruno de Oliveira Abinader2016-09-263-1/+57
|
* [Qt] QQuickMapboxGLRenderer is now a friend of QQuickMapboxGLBruno de Oliveira Abinader2016-09-261-19/+18
| | | | | Simplify implementation by removing unsafe accessors from QQuickMapboxGL meant only to be used by QQuickMapboxGLRenderer.
* [Qt] Move QMapboxGL::MapChange to QMapbox namespaceBruno de Oliveira Abinader2016-09-262-22/+23
|
* [Qt] Add API for adding icon to the styleThiago Marcos P. Santos2016-09-231-0/+3
|
* [qt] Separate transition options accessors from class APIBruno de Oliveira Abinader2016-09-131-3/+3
|
* [Qt] setStyleURL and setStyleJSON name reviewThiago Marcos P. Santos2016-08-261-4/+4
| | | | Qt uses URL as Url and JSON as Json.
* [Qt] Added QQuickMapboxGLStyleBruno de Oliveira Abinader2016-08-173-4/+47
| | | | | | | A QQuickMapboxGLStyleProperty being a child of QQuickMapboxGLStyle assures that only properties associated with that particular style will reflect on the map - and that happens only when the style is the current set via style property.
* [Qt] Use MapChangeWillStartLoadingMap to get notified about style changesBruno de Oliveira Abinader2016-08-171-1/+3
|