Skip to content

Commit

Permalink
Update maplibre
Browse files Browse the repository at this point in the history
  • Loading branch information
kebekus committed Oct 7, 2024
1 parent db21eac commit 988de07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maplibre-native-qt
Submodule maplibre-native-qt updated 69 files
+15 −10 .github/workflows/Android.yml
+6 −4 .github/workflows/Linux.yml
+4 −2 .github/workflows/Windows.yml
+41 −0 .github/workflows/docs-test.yml
+5 −2 .github/workflows/gh-pages-docs.yml
+21 −11 .github/workflows/iOS.yml
+7 −5 .github/workflows/macOS.yml
+97 −0 .github/workflows/source-tarball.yml
+1 −0 .gitignore
+13 −0 CMakeLists.txt
+19 −30 README.md
+93 −0 cmake/presets/Linux.json
+208 −0 docs/Building.md
+26 −0 docs/Documentation.md
+22 −16 docs/Doxyfile
+0 −8 docs/MAINPAGE.md
+8 −3 docs/README.md
+128 −0 docs/Usage.md
+ docs/config/favicon.ico
+0 −0 docs/config/footer.html
+0 −0 docs/config/header.html
+0 −0 docs/config/logo.svg
+1 −1 docs/doxygen-awesome-css
+57 −0 docs/examples/example_Style.qml
+26 −0 docs/examples/snippets_Map.qml
+72 −0 docs/examples/snippets_Style.qml
+20 −0 docs/location/LayerParameter.qml
+14 −0 docs/location/QMapLibreLocation.dox
+18 −0 docs/location/SourceParameter.qml
+41 −0 docs/location/Style.qml
+15 −0 docs/location/StyleParameter.qml
+0 −9 examples/quick/minimal.pro
+4 −0 src/core/CMakeLists.txt
+3 −0 src/core/conversion_p.hpp
+17 −6 src/core/map.cpp
+1 −1 src/core/map.hpp
+4 −0 src/core/map_observer.cpp
+1 −1 src/core/map_p.hpp
+4 −0 src/core/map_renderer.cpp
+6 −0 src/core/settings.cpp
+61 −0 src/core/style/filter_parameter.cpp
+38 −0 src/core/style/filter_parameter.hpp
+61 −0 src/core/style/image_parameter.cpp
+37 −0 src/core/style/image_parameter.hpp
+17 −5 src/core/style/image_style_change.cpp
+5 −3 src/core/style/image_style_change_p.hpp
+2 −0 src/core/style/layer_parameter.cpp
+12 −3 src/core/style/layer_style_change.cpp
+4 −2 src/core/style/layer_style_change_p.hpp
+2 −0 src/core/style/source_parameter.cpp
+5 −2 src/core/style/source_style_change.cpp
+37 −8 src/core/style/style_change.cpp
+4 −0 src/core/style/style_change_utils.cpp
+14 −1 src/core/style/style_parameter.cpp
+1 −0 src/core/style/style_parameter.hpp
+159 −26 src/core/types.cpp
+2 −0 src/location/plugins/CMakeLists.txt
+12 −0 src/location/plugins/declarative_filter_parameter.cpp
+36 −0 src/location/plugins/declarative_filter_parameter.hpp
+12 −0 src/location/plugins/declarative_image_parameter.cpp
+36 −0 src/location/plugins/declarative_image_parameter.hpp
+24 −0 src/location/plugins/declarative_source_parameter.cpp
+2 −0 src/location/plugins/declarative_source_parameter.hpp
+1 −1 src/location/qgeomap.cpp
+1 −1 src/location/texture_node.cpp
+59 −2 src/widgets/gl_widget.cpp
+1 −1 test/core/map_tester.cpp
+6 −0 test/qml/CMakeLists.txt
+91 −6 test/qml/qt6/tst_style_parameters.qml

0 comments on commit 988de07

Please sign in to comment.