├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-Qt-Commercial.txt └── MIT.txt ├── REUSE.toml ├── coin ├── axivion │ └── ci_config_linux.json └── module_config.yaml ├── configure.json ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.15.2 ├── changes-5.2.1 ├── changes-5.3.0 ├── changes-5.3.1 ├── changes-5.3.2 ├── changes-5.4.0 ├── changes-5.4.1 ├── changes-5.4.2 ├── changes-5.5.0 ├── changes-5.5.1 ├── changes-5.6.0 ├── changes-5.6.1 ├── changes-5.6.2 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.7.1 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 └── changes-5.9.4 ├── examples ├── CMakeLists.txt └── location │ ├── CMakeLists.txt │ ├── geojson_viewer │ ├── CMakeLists.txt │ ├── GeoJsonDelegate.qml │ ├── data │ │ ├── 01-point.json │ │ ├── 02-linestring.json │ │ ├── 03-multipoint.json │ │ ├── 04-polygon.json │ │ ├── 05-multilinestring.json │ │ ├── 06-multipolygon.json │ │ ├── 07-geometrycollection.json │ │ ├── 08-feature.json │ │ ├── 09-featurecollection.json │ │ ├── 10-countries.json │ │ ├── 11-full.json │ │ └── LICENSE.10-countries │ ├── doc │ │ ├── images │ │ │ └── geojson_viewer.png │ │ └── src │ │ │ └── geojson_viewer.qdoc │ ├── geojson_viewer.pro │ ├── main.cpp │ ├── main.qml │ ├── mapitems │ │ ├── CircleItem.qml │ │ ├── PolygonItem.qml │ │ ├── PolylineItem.qml │ │ └── RectangleItem.qml │ └── qml.qrc │ ├── itemview_transitions │ ├── CMakeLists.txt │ ├── OsloListModel.qml │ ├── doc │ │ ├── images │ │ │ └── itemview_transitions.jpg │ │ └── src │ │ │ └── itemview_transitions.qdoc │ ├── itemview_transitions.pro │ ├── main.cpp │ └── main.qml │ ├── mapviewer │ ├── CMakeLists.txt │ ├── Main.qml │ ├── doc │ │ ├── images │ │ │ └── mapviewer.png │ │ └── src │ │ │ └── mapviewer.qdoc │ ├── forms │ │ ├── Geocode.qml │ │ ├── GeocodeForm.ui.qml │ │ ├── Locale.qml │ │ ├── LocaleForm.ui.qml │ │ ├── Message.qml │ │ ├── MessageForm.ui.qml │ │ ├── ReverseGeocode.qml │ │ ├── ReverseGeocodeForm.ui.qml │ │ ├── RouteAddress.qml │ │ ├── RouteAddressForm.ui.qml │ │ ├── RouteCoordinate.qml │ │ ├── RouteCoordinateForm.ui.qml │ │ ├── RouteList.qml │ │ ├── RouteListDelegate.qml │ │ └── RouteListHeader.qml │ ├── helper.js │ ├── main.cpp │ ├── map │ │ ├── MapComponent.qml │ │ ├── MapSliders.qml │ │ ├── Marker.qml │ │ └── MiniMap.qml │ ├── mapviewer.pro │ ├── menus │ │ ├── ItemPopupMenu.qml │ │ ├── MainMenu.qml │ │ ├── MapPopupMenu.qml │ │ └── MarkerPopupMenu.qml │ ├── qmldir │ └── resources │ │ ├── marker.png │ │ ├── marker_blue.png │ │ ├── scale.png │ │ └── scale_end.png │ ├── minimal_map │ ├── CMakeLists.txt │ ├── doc │ │ ├── images │ │ │ └── minimal_map.png │ │ └── src │ │ │ └── minimal_map.qdoc │ ├── main.cpp │ ├── main.qml │ ├── minimal_map.pro │ └── qml.qrc │ ├── places │ ├── CMakeLists.txt │ ├── doc │ │ ├── images │ │ │ └── places.png │ │ └── src │ │ │ └── places.qdoc │ ├── forms │ │ ├── Message.qml │ │ ├── MessageForm.ui.qml │ │ ├── PlaceDetails.qml │ │ ├── PlaceDetailsForm.ui.qml │ │ ├── SearchBoundingBox.qml │ │ ├── SearchBoundingBoxForm.ui.qml │ │ ├── SearchBoundingCircle.qml │ │ ├── SearchBoundingCircleForm.ui.qml │ │ ├── SearchCenter.qml │ │ ├── SearchCenterForm.ui.qml │ │ ├── SearchOptions.qml │ │ └── SearchOptionsForm.ui.qml │ ├── helper.js │ ├── items │ │ ├── MainMenu.qml │ │ ├── MapComponent.qml │ │ └── SearchBar.qml │ ├── main.cpp │ ├── places.pro │ ├── places.qml │ ├── places.qrc │ ├── resources │ │ ├── categories.png │ │ ├── left.png │ │ ├── marker.png │ │ ├── right.png │ │ ├── scale.png │ │ ├── scale_end.png │ │ ├── search.png │ │ └── star.png │ └── views │ │ ├── CategoryDelegate.qml │ │ ├── CategoryView.qml │ │ ├── EditorialDelegate.qml │ │ ├── EditorialPage.qml │ │ ├── EditorialView.qml │ │ ├── ImageView.qml │ │ ├── RatingView.qml │ │ ├── ReviewDelegate.qml │ │ ├── ReviewPage.qml │ │ ├── ReviewView.qml │ │ ├── SearchResultDelegate.qml │ │ ├── SearchResultView.qml │ │ └── SuggestionView.qml │ ├── places_list │ ├── CMakeLists.txt │ ├── Marker.qml │ ├── doc │ │ ├── images │ │ │ └── places_list.png │ │ └── src │ │ │ └── places_list.qdoc │ ├── main.cpp │ ├── marker.png │ ├── places_list.pro │ ├── places_list.qml │ └── places_list.qrc │ ├── places_map │ ├── CMakeLists.txt │ ├── Main.qml │ ├── PermissionsScreen.qml │ ├── PlacesMap.qml │ ├── doc │ │ ├── images │ │ │ └── places_map.png │ │ └── src │ │ │ └── places_map.qdoc │ ├── main.cpp │ ├── marker.png │ ├── places_map.pro │ └── places_map.qrc │ └── planespotter │ ├── CMakeLists.txt │ ├── Plane.qml │ ├── airplane.svg │ ├── doc │ ├── images │ │ └── planespotter.png │ └── src │ │ └── planespotter.qdoc │ ├── main.cpp │ ├── planespotter.pro │ ├── planespotter.qml │ └── qml.qrc ├── licenseRule.json ├── src ├── CMakeLists.txt ├── configure.cmake ├── location │ ├── CMakeLists.txt │ ├── configure.json │ ├── declarativemaps │ │ ├── error_messages.cpp │ │ ├── error_messages_p.h │ │ ├── qdeclarativegeocodemodel.cpp │ │ ├── qdeclarativegeocodemodel_p.h │ │ ├── qdeclarativegeojsondata.cpp │ │ ├── qdeclarativegeojsondata_p.h │ │ ├── qdeclarativegeoroutemodel.cpp │ │ ├── qdeclarativegeoroutemodel_p.h │ │ ├── qdeclarativegeoserviceprovider.cpp │ │ └── qdeclarativegeoserviceprovider_p.h │ ├── declarativeplaces │ │ ├── qdeclarativecategory.cpp │ │ ├── qdeclarativecategory_p.h │ │ ├── qdeclarativecontactdetails.cpp │ │ ├── qdeclarativecontactdetails_p.h │ │ ├── qdeclarativeplace.cpp │ │ ├── qdeclarativeplace_p.h │ │ ├── qdeclarativeplacecontentmodel.cpp │ │ ├── qdeclarativeplacecontentmodel_p.h │ │ ├── qdeclarativesearchmodelbase.cpp │ │ ├── qdeclarativesearchmodelbase_p.h │ │ ├── qdeclarativesearchresultmodel.cpp │ │ ├── qdeclarativesearchresultmodel_p.h │ │ ├── qdeclarativesearchsuggestionmodel.cpp │ │ ├── qdeclarativesearchsuggestionmodel_p.h │ │ ├── qdeclarativesupportedcategoriesmodel.cpp │ │ └── qdeclarativesupportedcategoriesmodel_p.h │ ├── doc │ │ ├── images │ │ │ ├── api-mapcircle.png │ │ │ ├── api-mapitemgroup.png │ │ │ ├── api-mappolygon.png │ │ │ ├── api-mappolyline.png │ │ │ ├── api-mapquickitem-anchor.png │ │ │ ├── api-mapquickitem.png │ │ │ ├── api-maprectangle.png │ │ │ ├── mapsdemo-finished.png │ │ │ ├── mapsdemo-routing.png │ │ │ ├── mapsdemo-searchgui.png │ │ │ └── mapsdemo-verybasic.png │ │ ├── qtlocation.qdocconf │ │ ├── snippets │ │ │ ├── cpp │ │ │ │ ├── cppqml.cpp │ │ │ │ └── main.cpp │ │ │ ├── declarative │ │ │ │ ├── maps.qml │ │ │ │ ├── marker.png │ │ │ │ ├── nmealog.txt │ │ │ │ ├── places.qml │ │ │ │ ├── places_loader.qml │ │ │ │ ├── plugin.qml │ │ │ │ └── routing.qml │ │ │ ├── maps │ │ │ │ └── routehandler.h │ │ │ └── places │ │ │ │ ├── main.cpp │ │ │ │ └── requesthandler.h │ │ └── src │ │ │ ├── example-parameters.qdocinc │ │ │ ├── maps.qdoc │ │ │ ├── place-caveats.qdocinc │ │ │ ├── place-crossref.qdocinc │ │ │ ├── place-definition.qdocinc │ │ │ ├── places.qdoc │ │ │ ├── plugins │ │ │ ├── esri.qdoc │ │ │ ├── itemsoverlay.qdoc │ │ │ ├── mapbox.qdoc │ │ │ ├── mapboxgl.qdoc │ │ │ ├── nokia.qdoc │ │ │ ├── osm.qdoc │ │ │ └── places-backend.qdoc │ │ │ ├── qml-maps.qdoc │ │ │ ├── qt6-changes.qdoc │ │ │ ├── qtlocation-cpp.qdoc │ │ │ ├── qtlocation-examples.qdoc │ │ │ ├── qtlocation-geoservices.qdoc │ │ │ ├── qtlocation-qml.qdoc │ │ │ ├── qtlocation-toc.qdoc │ │ │ └── qtlocation.qdoc │ ├── maps │ │ ├── MapView.qml │ │ ├── qabstractgeotilecache.cpp │ │ ├── qabstractgeotilecache_p.h │ │ ├── qcache3q_p.h │ │ ├── qgeocameracapabilities.cpp │ │ ├── qgeocameracapabilities_p.h │ │ ├── qgeocameradata.cpp │ │ ├── qgeocameradata_p.h │ │ ├── qgeocameratiles.cpp │ │ ├── qgeocameratiles_p.h │ │ ├── qgeocameratiles_p_p.h │ │ ├── qgeocodereply.cpp │ │ ├── qgeocodereply.h │ │ ├── qgeocodereply_p.h │ │ ├── qgeocodingmanager.cpp │ │ ├── qgeocodingmanager.h │ │ ├── qgeocodingmanager_p.h │ │ ├── qgeocodingmanagerengine.cpp │ │ ├── qgeocodingmanagerengine.h │ │ ├── qgeocodingmanagerengine_p.h │ │ ├── qgeofiletilecache.cpp │ │ ├── qgeofiletilecache_p.h │ │ ├── qgeojson.cpp │ │ ├── qgeojson_p.h │ │ ├── qgeomaneuver.cpp │ │ ├── qgeomaneuver.h │ │ ├── qgeomaneuver_p.h │ │ ├── qgeomaneuverderived_p.h │ │ ├── qgeomap.cpp │ │ ├── qgeomap_p.h │ │ ├── qgeomap_p_p.h │ │ ├── qgeomappingmanager.cpp │ │ ├── qgeomappingmanager_p.h │ │ ├── qgeomappingmanager_p_p.h │ │ ├── qgeomappingmanagerengine.cpp │ │ ├── qgeomappingmanagerengine_p.h │ │ ├── qgeomappingmanagerengine_p_p.h │ │ ├── qgeomaptype.cpp │ │ ├── qgeomaptype_p.h │ │ ├── qgeomaptype_p_p.h │ │ ├── qgeoprojection.cpp │ │ ├── qgeoprojection_p.h │ │ ├── qgeoroute.cpp │ │ ├── qgeoroute.h │ │ ├── qgeoroute_p.h │ │ ├── qgeorouteparser.cpp │ │ ├── qgeorouteparser_p.h │ │ ├── qgeorouteparser_p_p.h │ │ ├── qgeorouteparserosrmv5.cpp │ │ ├── qgeorouteparserosrmv5_p.h │ │ ├── qgeoroutereply.cpp │ │ ├── qgeoroutereply.h │ │ ├── qgeoroutereply_p.h │ │ ├── qgeorouterequest.cpp │ │ ├── qgeorouterequest.h │ │ ├── qgeorouterequest_p.h │ │ ├── qgeoroutesegment.cpp │ │ ├── qgeoroutesegment.h │ │ ├── qgeoroutesegment_p.h │ │ ├── qgeoroutingmanager.cpp │ │ ├── qgeoroutingmanager.h │ │ ├── qgeoroutingmanager_p.h │ │ ├── qgeoroutingmanagerengine.cpp │ │ ├── qgeoroutingmanagerengine.h │ │ ├── qgeoroutingmanagerengine_p.h │ │ ├── qgeoserviceprovider.cpp │ │ ├── qgeoserviceprovider.h │ │ ├── qgeoserviceprovider_p.h │ │ ├── qgeoserviceproviderfactory.cpp │ │ ├── qgeoserviceproviderfactory.h │ │ ├── qgeotiledmap.cpp │ │ ├── qgeotiledmap_p.h │ │ ├── qgeotiledmap_p_p.h │ │ ├── qgeotiledmappingmanagerengine.cpp │ │ ├── qgeotiledmappingmanagerengine_p.h │ │ ├── qgeotiledmappingmanagerengine_p_p.h │ │ ├── qgeotiledmapreply.cpp │ │ ├── qgeotiledmapreply_p.h │ │ ├── qgeotiledmapreply_p_p.h │ │ ├── qgeotiledmapscene.cpp │ │ ├── qgeotiledmapscene_p.h │ │ ├── qgeotiledmapscene_p_p.h │ │ ├── qgeotilefetcher.cpp │ │ ├── qgeotilefetcher_p.h │ │ ├── qgeotilefetcher_p_p.h │ │ ├── qgeotilerequestmanager.cpp │ │ ├── qgeotilerequestmanager_p.h │ │ ├── qgeotilespec.cpp │ │ ├── qgeotilespec_p.h │ │ └── qgeotilespec_p_p.h │ ├── places │ │ ├── qplace.cpp │ │ ├── qplace.h │ │ ├── qplace_p.h │ │ ├── qplaceattribute.cpp │ │ ├── qplaceattribute.h │ │ ├── qplaceattribute_p.h │ │ ├── qplacecategory.cpp │ │ ├── qplacecategory.h │ │ ├── qplacecategory_p.h │ │ ├── qplacecontactdetail.cpp │ │ ├── qplacecontactdetail.h │ │ ├── qplacecontactdetail_p.h │ │ ├── qplacecontent.cpp │ │ ├── qplacecontent.h │ │ ├── qplacecontent_p.h │ │ ├── qplacecontentreply.cpp │ │ ├── qplacecontentreply.h │ │ ├── qplacecontentrequest.cpp │ │ ├── qplacecontentrequest.h │ │ ├── qplacecontentrequest_p.h │ │ ├── qplacedetailsreply.cpp │ │ ├── qplacedetailsreply.h │ │ ├── qplaceicon.cpp │ │ ├── qplaceicon.h │ │ ├── qplaceicon_p.h │ │ ├── qplaceidreply.cpp │ │ ├── qplaceidreply.h │ │ ├── qplacemanager.cpp │ │ ├── qplacemanager.h │ │ ├── qplacemanagerengine.cpp │ │ ├── qplacemanagerengine.h │ │ ├── qplacemanagerengine_p.h │ │ ├── qplacematchreply.cpp │ │ ├── qplacematchreply.h │ │ ├── qplacematchrequest.cpp │ │ ├── qplacematchrequest.h │ │ ├── qplaceproposedsearchresult.cpp │ │ ├── qplaceproposedsearchresult.h │ │ ├── qplaceproposedsearchresult_p.h │ │ ├── qplaceratings.cpp │ │ ├── qplaceratings.h │ │ ├── qplaceratings_p.h │ │ ├── qplacereply.cpp │ │ ├── qplacereply.h │ │ ├── qplacereply_p.h │ │ ├── qplaceresult.cpp │ │ ├── qplaceresult.h │ │ ├── qplaceresult_p.h │ │ ├── qplacesearchreply.cpp │ │ ├── qplacesearchreply.h │ │ ├── qplacesearchrequest.cpp │ │ ├── qplacesearchrequest.h │ │ ├── qplacesearchrequest_p.h │ │ ├── qplacesearchresult.cpp │ │ ├── qplacesearchresult.h │ │ ├── qplacesearchresult_p.h │ │ ├── qplacesearchsuggestionreply.cpp │ │ ├── qplacesearchsuggestionreply.h │ │ ├── qplacesupplier.cpp │ │ ├── qplacesupplier.h │ │ ├── qplacesupplier_p.h │ │ ├── qplaceuser.cpp │ │ ├── qplaceuser.h │ │ ├── qplaceuser_p.h │ │ └── unsupportedreplies_p.h │ ├── qlocation.cpp │ ├── qlocation.h │ ├── qlocationglobal.h │ ├── qlocationglobal_p.h │ └── quickmapitems │ │ ├── qdeclarativecirclemapitem.cpp │ │ ├── qdeclarativecirclemapitem_p.h │ │ ├── qdeclarativecirclemapitem_p_p.h │ │ ├── qdeclarativegeomap.cpp │ │ ├── qdeclarativegeomap_p.h │ │ ├── qdeclarativegeomapcopyrightsnotice.cpp │ │ ├── qdeclarativegeomapcopyrightsnotice_p.h │ │ ├── qdeclarativegeomapitembase.cpp │ │ ├── qdeclarativegeomapitembase_p.h │ │ ├── qdeclarativegeomapitemgroup.cpp │ │ ├── qdeclarativegeomapitemgroup_p.h │ │ ├── qdeclarativegeomapitemtransitionmanager.cpp │ │ ├── qdeclarativegeomapitemtransitionmanager_p.h │ │ ├── qdeclarativegeomapitemutils.cpp │ │ ├── qdeclarativegeomapitemutils_p.h │ │ ├── qdeclarativegeomapitemview.cpp │ │ ├── qdeclarativegeomapitemview_p.h │ │ ├── qdeclarativegeomapquickitem.cpp │ │ ├── qdeclarativegeomapquickitem_p.h │ │ ├── qdeclarativepolygonmapitem.cpp │ │ ├── qdeclarativepolygonmapitem_p.h │ │ ├── qdeclarativepolygonmapitem_p_p.h │ │ ├── qdeclarativepolylinemapitem.cpp │ │ ├── qdeclarativepolylinemapitem_p.h │ │ ├── qdeclarativepolylinemapitem_p_p.h │ │ ├── qdeclarativerectanglemapitem.cpp │ │ ├── qdeclarativerectanglemapitem_p.h │ │ ├── qdeclarativerectanglemapitem_p_p.h │ │ ├── qdeclarativeroutemapitem.cpp │ │ ├── qdeclarativeroutemapitem_p.h │ │ ├── qgeomapitemgeometry.cpp │ │ └── qgeomapitemgeometry_p.h └── plugins │ ├── CMakeLists.txt │ └── geoservices │ ├── CMakeLists.txt │ ├── esri │ ├── CMakeLists.txt │ ├── esri.qrc │ ├── esri_plugin.json │ ├── geocodereply_esri.cpp │ ├── geocodereply_esri.h │ ├── geocodingmanagerengine_esri.cpp │ ├── geocodingmanagerengine_esri.h │ ├── geomapsource.cpp │ ├── geomapsource.h │ ├── georoutejsonparser_esri.cpp │ ├── georoutejsonparser_esri.h │ ├── georoutereply_esri.cpp │ ├── georoutereply_esri.h │ ├── georoutingmanagerengine_esri.cpp │ ├── georoutingmanagerengine_esri.h │ ├── geoserviceproviderfactory_esri.cpp │ ├── geoserviceproviderfactory_esri.h │ ├── geotiledmap_esri.cpp │ ├── geotiledmap_esri.h │ ├── geotiledmappingmanagerengine_esri.cpp │ ├── geotiledmappingmanagerengine_esri.h │ ├── geotiledmapreply_esri.cpp │ ├── geotiledmapreply_esri.h │ ├── geotilefetcher_esri.cpp │ ├── geotilefetcher_esri.h │ ├── maps.json │ ├── placecategoriesreply_esri.cpp │ ├── placecategoriesreply_esri.h │ ├── placemanagerengine_esri.cpp │ ├── placemanagerengine_esri.h │ ├── placesearchreply_esri.cpp │ └── placesearchreply_esri.h │ ├── itemsoverlay │ ├── CMakeLists.txt │ ├── itemsoverlay_plugin.json │ ├── qgeomapitemsoverlay.cpp │ ├── qgeomapitemsoverlay.h │ ├── qgeomappingmanagerengineitemsoverlay.cpp │ ├── qgeomappingmanagerengineitemsoverlay.h │ ├── qgeoserviceproviderpluginitemsoverlay.cpp │ └── qgeoserviceproviderpluginitemsoverlay.h │ ├── mapbox │ ├── CMakeLists.txt │ ├── maki-4.0.0 │ │ ├── LICENSE.txt │ │ ├── aerialway.svg │ │ ├── airfield.svg │ │ ├── airport.svg │ │ ├── alcohol-shop.svg │ │ ├── america-football.svg │ │ ├── amusement-park.svg │ │ ├── aquarium.svg │ │ ├── art-gallery.svg │ │ ├── attraction.svg │ │ ├── bakery.svg │ │ ├── bank.svg │ │ ├── bar.svg │ │ ├── barrier.svg │ │ ├── baseball.svg │ │ ├── basketball.svg │ │ ├── bbq.svg │ │ ├── beer.svg │ │ ├── bicycle-share.svg │ │ ├── bicycle.svg │ │ ├── blood-bank.svg │ │ ├── buddhism.svg │ │ ├── building-alt1.svg │ │ ├── building.svg │ │ ├── bus.svg │ │ ├── cafe.svg │ │ ├── campsite.svg │ │ ├── car.svg │ │ ├── castle.svg │ │ ├── cemetery.svg │ │ ├── cinema.svg │ │ ├── circle-stroked.svg │ │ ├── circle.svg │ │ ├── city.svg │ │ ├── clothing-store.svg │ │ ├── college.svg │ │ ├── commercial.svg │ │ ├── cricket.svg │ │ ├── cross.svg │ │ ├── dam.svg │ │ ├── danger.svg │ │ ├── defibrillator.svg │ │ ├── dentist.svg │ │ ├── doctor.svg │ │ ├── dog-park.svg │ │ ├── drinking-water.svg │ │ ├── embassy.svg │ │ ├── emergency-phone.svg │ │ ├── entrance-alt1.svg │ │ ├── entrance.svg │ │ ├── farm.svg │ │ ├── fast-food.svg │ │ ├── fence.svg │ │ ├── ferry.svg │ │ ├── fire-station.svg │ │ ├── florist.svg │ │ ├── fuel.svg │ │ ├── gaming.svg │ │ ├── garden-center.svg │ │ ├── garden.svg │ │ ├── gift.svg │ │ ├── golf.svg │ │ ├── grocery.svg │ │ ├── hairdresser.svg │ │ ├── harbor.svg │ │ ├── heart.svg │ │ ├── heliport.svg │ │ ├── home.svg │ │ ├── horse-riding.svg │ │ ├── hospital.svg │ │ ├── ice-cream.svg │ │ ├── industry.svg │ │ ├── information.svg │ │ ├── karaoke.svg │ │ ├── landmark.svg │ │ ├── landuse.svg │ │ ├── laundry.svg │ │ ├── library.svg │ │ ├── lighthouse.svg │ │ ├── lodging.svg │ │ ├── logging.svg │ │ ├── marker-stroked.svg │ │ ├── marker.svg │ │ ├── mobile-phone.svg │ │ ├── monument.svg │ │ ├── mountain.svg │ │ ├── museum.svg │ │ ├── music.svg │ │ ├── natural.svg │ │ ├── park-alt1.svg │ │ ├── park.svg │ │ ├── parking-garage.svg │ │ ├── parking.svg │ │ ├── pharmacy.svg │ │ ├── picnic-site.svg │ │ ├── pitch.svg │ │ ├── place-of-worship.svg │ │ ├── playground.svg │ │ ├── police.svg │ │ ├── post.svg │ │ ├── prison.svg │ │ ├── rail-light.svg │ │ ├── rail-metro.svg │ │ ├── rail.svg │ │ ├── ranger-station.svg │ │ ├── recycling.svg │ │ ├── religious-christian.svg │ │ ├── religious-jewish.svg │ │ ├── religious-muslim.svg │ │ ├── residential-community.svg │ │ ├── restaurant.svg │ │ ├── roadblock.svg │ │ ├── rocket.svg │ │ ├── school.svg │ │ ├── scooter.svg │ │ ├── shelter.svg │ │ ├── shop.svg │ │ ├── skiing.svg │ │ ├── slaughterhouse.svg │ │ ├── snowmobile.svg │ │ ├── soccer.svg │ │ ├── square-stroked.svg │ │ ├── square.svg │ │ ├── stadium.svg │ │ ├── star-stroked.svg │ │ ├── star.svg │ │ ├── suitcase.svg │ │ ├── sushi.svg │ │ ├── swimming.svg │ │ ├── teahouse.svg │ │ ├── telephone.svg │ │ ├── tennis.svg │ │ ├── theatre.svg │ │ ├── toilet.svg │ │ ├── town-hall.svg │ │ ├── town.svg │ │ ├── triangle-stroked.svg │ │ ├── triangle.svg │ │ ├── veterinary.svg │ │ ├── village.svg │ │ ├── volcano.svg │ │ ├── warehouse.svg │ │ ├── waste-basket.svg │ │ ├── water.svg │ │ ├── wetland.svg │ │ ├── wheelchair.svg │ │ └── zoo.svg │ ├── mapbox.qrc │ ├── mapbox_plugin.json │ ├── qgeocodereplymapbox.cpp │ ├── qgeocodereplymapbox.h │ ├── qgeocodingmanagerenginemapbox.cpp │ ├── qgeocodingmanagerenginemapbox.h │ ├── qgeofiletilecachemapbox.cpp │ ├── qgeofiletilecachemapbox.h │ ├── qgeomapreplymapbox.cpp │ ├── qgeomapreplymapbox.h │ ├── qgeoroutereplymapbox.cpp │ ├── qgeoroutereplymapbox.h │ ├── qgeoroutingmanagerenginemapbox.cpp │ ├── qgeoroutingmanagerenginemapbox.h │ ├── qgeoserviceproviderpluginmapbox.cpp │ ├── qgeoserviceproviderpluginmapbox.h │ ├── qgeotiledmappingmanagerenginemapbox.cpp │ ├── qgeotiledmappingmanagerenginemapbox.h │ ├── qgeotilefetchermapbox.cpp │ ├── qgeotilefetchermapbox.h │ ├── qmapboxcommon.cpp │ ├── qmapboxcommon.h │ ├── qplacecategoriesreplymapbox.cpp │ ├── qplacecategoriesreplymapbox.h │ ├── qplacemanagerenginemapbox.cpp │ ├── qplacemanagerenginemapbox.h │ ├── qplacesearchreplymapbox.cpp │ ├── qplacesearchreplymapbox.h │ ├── qplacesearchsuggestionreplymapbox.cpp │ └── qplacesearchsuggestionreplymapbox.h │ ├── mapboxgl │ ├── logo.png │ ├── mapboxgl.qrc │ ├── mapboxgl_plugin.json │ ├── qgeomapmapboxgl.cpp │ ├── qgeomapmapboxgl.h │ ├── qgeomapmapboxgl_p.h │ ├── qgeomappingmanagerenginemapboxgl.cpp │ ├── qgeomappingmanagerenginemapboxgl.h │ ├── qgeoserviceproviderpluginmapboxgl.cpp │ ├── qgeoserviceproviderpluginmapboxgl.h │ ├── qmapboxglstylechange.cpp │ ├── qmapboxglstylechange_p.h │ ├── qsgmapboxglnode.cpp │ └── qsgmapboxglnode.h │ ├── nokia │ ├── CMakeLists.txt │ ├── logo.png │ ├── marclanguagecodes.h │ ├── nokia.qrc │ ├── nokia_plugin.json │ ├── placesv2 │ │ ├── jsonparserhelpers.cpp │ │ ├── jsonparserhelpers.h │ │ ├── placesv2.pri │ │ ├── qplacecategoriesreplyhere.cpp │ │ ├── qplacecategoriesreplyhere.h │ │ ├── qplacecontentreplyimpl.cpp │ │ ├── qplacecontentreplyimpl.h │ │ ├── qplacedetailsreplyimpl.cpp │ │ ├── qplacedetailsreplyimpl.h │ │ ├── qplacesearchreplyhere.cpp │ │ ├── qplacesearchreplyhere.h │ │ ├── qplacesearchsuggestionreplyimpl.cpp │ │ └── qplacesearchsuggestionreplyimpl.h │ ├── qgeocodejsonparser.cpp │ ├── qgeocodejsonparser.h │ ├── qgeocodereply_nokia.cpp │ ├── qgeocodereply_nokia.h │ ├── qgeocodingmanagerengine_nokia.cpp │ ├── qgeocodingmanagerengine_nokia.h │ ├── qgeoerror_messages.cpp │ ├── qgeoerror_messages.h │ ├── qgeofiletilecachenokia.cpp │ ├── qgeofiletilecachenokia.h │ ├── qgeointrinsicnetworkaccessmanager.cpp │ ├── qgeointrinsicnetworkaccessmanager.h │ ├── qgeomapreply_nokia.cpp │ ├── qgeomapreply_nokia.h │ ├── qgeomapversion.cpp │ ├── qgeomapversion.h │ ├── qgeonetworkaccessmanager.h │ ├── qgeoroutereply_nokia.cpp │ ├── qgeoroutereply_nokia.h │ ├── qgeoroutexmlparser.cpp │ ├── qgeoroutexmlparser.h │ ├── qgeoroutingmanagerengine_nokia.cpp │ ├── qgeoroutingmanagerengine_nokia.h │ ├── qgeoserviceproviderplugin_nokia.cpp │ ├── qgeoserviceproviderplugin_nokia.h │ ├── qgeotiledmap_nokia.cpp │ ├── qgeotiledmap_nokia.h │ ├── qgeotiledmappingmanagerengine_nokia.cpp │ ├── qgeotiledmappingmanagerengine_nokia.h │ ├── qgeotilefetcher_nokia.cpp │ ├── qgeotilefetcher_nokia.h │ ├── qgeouriprovider.cpp │ ├── qgeouriprovider.h │ ├── qplacemanagerengine_nokiav2.cpp │ ├── qplacemanagerengine_nokiav2.h │ ├── uri_constants.cpp │ └── uri_constants.h │ └── osm │ ├── CMakeLists.txt │ ├── osm_plugin.json │ ├── providers │ └── 5.8 │ │ ├── cycle │ │ ├── hiking │ │ ├── night-transit │ │ ├── satellite │ │ ├── street │ │ ├── street-hires │ │ ├── terrain │ │ └── transit │ ├── qgeocodereplyosm.cpp │ ├── qgeocodereplyosm.h │ ├── qgeocodingmanagerengineosm.cpp │ ├── qgeocodingmanagerengineosm.h │ ├── qgeofiletilecacheosm.cpp │ ├── qgeofiletilecacheosm.h │ ├── qgeomapreplyosm.cpp │ ├── qgeomapreplyosm.h │ ├── qgeorouteparserosrmv4.cpp │ ├── qgeorouteparserosrmv4_p.h │ ├── qgeoroutereplyosm.cpp │ ├── qgeoroutereplyosm.h │ ├── qgeoroutingmanagerengineosm.cpp │ ├── qgeoroutingmanagerengineosm.h │ ├── qgeoserviceproviderpluginosm.cpp │ ├── qgeoserviceproviderpluginosm.h │ ├── qgeotiledmaposm.cpp │ ├── qgeotiledmaposm.h │ ├── qgeotiledmappingmanagerengineosm.cpp │ ├── qgeotiledmappingmanagerengineosm.h │ ├── qgeotilefetcherosm.cpp │ ├── qgeotilefetcherosm.h │ ├── qgeotileproviderosm.cpp │ ├── qgeotileproviderosm.h │ ├── qplacecategoriesreplyosm.cpp │ ├── qplacecategoriesreplyosm.h │ ├── qplacemanagerengineosm.cpp │ ├── qplacemanagerengineosm.h │ ├── qplacesearchreplyosm.cpp │ └── qplacesearchreplyosm.h └── tests ├── CMakeLists.txt ├── auto ├── CMakeLists.txt ├── declarative_location_core │ ├── BLACKLIST │ ├── CMakeLists.txt │ ├── main.cpp │ ├── tst_category.qml │ ├── tst_categorymodel.qml │ ├── tst_contactdetail.qml │ ├── tst_editorialmodel.qml │ ├── tst_geocoding.qml │ ├── tst_imagemodel.qml │ ├── tst_place.qml │ ├── tst_placeattribute.qml │ ├── tst_placeicon.qml │ ├── tst_placesearchmodel.qml │ ├── tst_placesearchsuggestionmodel.qml │ ├── tst_plugin.qml │ ├── tst_plugin_error.qml │ ├── tst_ratings.qml │ ├── tst_reviewmodel.qml │ ├── tst_routing.qml │ ├── tst_supplier.qml │ ├── tst_user.qml │ └── utils.js ├── declarative_mappolyline │ ├── CMakeLists.txt │ ├── main.cpp │ └── tst_declarative_mappolyline.qml ├── declarative_ui │ ├── BLACKLIST │ ├── CMakeLists.txt │ ├── Delegate.qml │ ├── ItemGroup.qml │ ├── Model.qml │ ├── main.cpp │ ├── tst_map.qml │ ├── tst_map_coordinateanimation.qml │ ├── tst_map_error.qml │ ├── tst_map_flick.qml │ ├── tst_map_item.qml │ ├── tst_map_item_details.qml │ ├── tst_map_item_fit_viewport.qml │ ├── tst_map_itemview.qml │ ├── tst_map_keepgrab.qml │ ├── tst_map_maptype.qml │ ├── tst_map_mouse.qml │ └── tst_map_pinch.qml.QTBUG-47970 ├── declarativetestplugin │ ├── CMakeLists.txt │ ├── locationtest.cpp │ ├── qdeclarativelocationtestmodel.cpp │ ├── qdeclarativelocationtestmodel_p.h │ ├── qdeclarativepinchgenerator.cpp │ ├── qdeclarativepinchgenerator_p.h │ ├── qmldir │ └── testhelper.h ├── geotestplugin │ ├── CMakeLists.txt │ ├── geotestplugin.json │ ├── place_data.json │ ├── qgeocodingmanagerengine_test.h │ ├── qgeomappingmanagerengine_test.h │ ├── qgeoroutingmanagerengine_test.h │ ├── qgeoserviceproviderplugin_test.cpp │ ├── qgeoserviceproviderplugin_test.h │ ├── qgeotiledmap_test.cpp │ ├── qgeotiledmap_test.h │ ├── qgeotiledmappingmanagerengine_test.h │ ├── qgeotilefetcher_test.h │ ├── qplacemanagerengine_test.h │ └── testdata.qrc ├── maptype │ ├── CMakeLists.txt │ └── tst_maptype.cpp ├── nokia_services │ ├── CMakeLists.txt │ ├── places_semiauto │ │ ├── CMakeLists.txt │ │ └── tst_places.cpp │ └── routing │ │ ├── CMakeLists.txt │ │ ├── error-no-route.xml │ │ ├── invalid-response-half-way-through.xml │ │ ├── invalid-response-no-calculateroute-tag.xml │ │ ├── invalid-response-no-route-tag.xml │ │ ├── invalid-response-trash.xml │ │ ├── littered-with-new-tags.xml │ │ ├── multiple-routes-in-response.xml │ │ ├── optim-fastest.xml │ │ ├── optim-shortest.xml │ │ ├── travelmode-car.xml │ │ ├── travelmode-pedestrian.xml │ │ ├── travelmode-public-transport.xml │ │ └── tst_routing.cpp ├── placemanager_utils │ ├── placemanager_utils.cpp │ └── placemanager_utils.h ├── placesplugin_unsupported │ ├── CMakeLists.txt │ ├── placesplugin.json │ ├── qgeoserviceproviderplugin_test.cpp │ └── qgeoserviceproviderplugin_test.h ├── qgeocameracapabilities │ ├── CMakeLists.txt │ └── tst_qgeocameracapabilities.cpp ├── qgeocameradata │ ├── CMakeLists.txt │ └── tst_qgeocameradata.cpp ├── qgeocameratiles │ ├── CMakeLists.txt │ └── tst_qgeocameratiles.cpp ├── qgeocodereply │ ├── CMakeLists.txt │ ├── tst_qgeocodereply.cpp │ └── tst_qgeocodereply.h ├── qgeocodingmanager │ ├── CMakeLists.txt │ ├── tst_qgeocodingmanager.cpp │ └── tst_qgeocodingmanager.h ├── qgeocodingmanagerplugins │ ├── CMakeLists.txt │ ├── geocoding_plugin.json │ ├── qgeocodingmanagerengine_test.h │ ├── qgeoserviceproviderplugin_test.cpp │ └── qgeoserviceproviderplugin_test.h ├── qgeojson │ ├── 01-point.json │ ├── 02-linestring.json │ ├── 03-multipoint.json │ ├── 04-polygon.json │ ├── 05-multilinestring.json │ ├── 06-multipolygon.json │ ├── 07-geometrycollection.json │ ├── 08-feature.json │ ├── 09-featurecollection.json │ ├── 10-countries.json │ ├── 11-full.json │ ├── CMakeLists.txt │ ├── LICENSE.10-countries │ └── tst_qgeojson.cpp ├── qgeomaneuver │ ├── CMakeLists.txt │ ├── tst_qgeomaneuver.cpp │ └── tst_qgeomaneuver.h ├── qgeoroute │ ├── CMakeLists.txt │ ├── tst_qgeoroute.cpp │ └── tst_qgeoroute.h ├── qgeoroutereply │ ├── CMakeLists.txt │ ├── tst_qgeoroutereply.cpp │ └── tst_qgeoroutereply.h ├── qgeorouterequest │ ├── CMakeLists.txt │ ├── tst_qgeorouterequest.cpp │ └── tst_qgeorouterequest.h ├── qgeoroutesegment │ ├── CMakeLists.txt │ ├── tst_qgeoroutesegment.cpp │ └── tst_qgeoroutesegment.h ├── qgeoroutexmlparser │ ├── CMakeLists.txt │ ├── fixtures.qrc │ ├── route1.xml │ ├── route2.xml │ └── tst_qgeoroutexmlparser.cpp ├── qgeoroutingmanager │ ├── CMakeLists.txt │ ├── tst_qgeoroutingmanager.cpp │ └── tst_qgeoroutingmanager.h ├── qgeoroutingmanagerplugins │ ├── CMakeLists.txt │ ├── qgeoroutingmanagerengine_test.h │ ├── qgeoserviceproviderplugin_test.cpp │ ├── qgeoserviceproviderplugin_test.h │ └── routing_plugin.json ├── qgeoserviceprovider │ ├── CMakeLists.txt │ └── tst_qgeoserviceprovider.cpp ├── qgeotiledmap │ ├── BLACKLIST │ ├── CMakeLists.txt │ └── tst_qgeotiledmap.cpp ├── qgeotiledmapscene │ ├── CMakeLists.txt │ └── tst_qgeotiledmapscene.cpp ├── qgeotilespec │ ├── CMakeLists.txt │ └── tst_qgeotilespec.cpp ├── qmlinterface │ ├── CMakeLists.txt │ ├── data │ │ ├── TestAddress.qml │ │ ├── TestCategory.qml │ │ ├── TestContactDetail.qml │ │ ├── TestIcon.qml │ │ ├── TestLocation.qml │ │ ├── TestPlace.qml │ │ ├── TestPlaceAttribute.qml │ │ ├── TestRatings.qml │ │ ├── TestSupplier.qml │ │ └── TestUser.qml │ └── tst_qmlinterface.cpp ├── qplace │ ├── CMakeLists.txt │ └── tst_qplace.cpp ├── qplaceattribute │ ├── CMakeLists.txt │ └── tst_qplaceattribute.cpp ├── qplacecategory │ ├── CMakeLists.txt │ └── tst_qplacecategory.cpp ├── qplacecontactdetail │ ├── CMakeLists.txt │ └── tst_qplacecontactdetail.cpp ├── qplacecontentrequest │ ├── CMakeLists.txt │ └── tst_qplacecontentrequest.cpp ├── qplacedetailsreply │ ├── CMakeLists.txt │ └── tst_qplacedetailsreply.cpp ├── qplacemanager │ ├── CMakeLists.txt │ └── tst_qplacemanager.cpp ├── qplacemanager_nokia │ ├── CMakeLists.txt │ └── tst_qplacemanager_nokia.cpp ├── qplacemanager_unsupported │ ├── CMakeLists.txt │ └── tst_qplacemanager_unsupported.cpp ├── qplacematchreply │ ├── CMakeLists.txt │ └── tst_qplacematchreply.cpp ├── qplacematchrequest │ ├── CMakeLists.txt │ └── tst_qplacematchrequest.cpp ├── qplaceratings │ ├── CMakeLists.txt │ └── tst_qplaceratings.cpp ├── qplacereply │ ├── CMakeLists.txt │ └── tst_qplacereply.cpp ├── qplaceresult │ ├── CMakeLists.txt │ └── tst_qplaceresult.cpp ├── qplacesearchreply │ ├── CMakeLists.txt │ └── tst_qplacesearchreply.cpp ├── qplacesearchrequest │ ├── CMakeLists.txt │ └── tst_qplacesearchrequest.cpp ├── qplacesearchresult │ ├── CMakeLists.txt │ └── tst_qplacesearchresult.cpp ├── qplacesearchsuggestionreply │ ├── CMakeLists.txt │ └── tst_qplacesearchsuggestionreply.cpp ├── qplacesupplier │ ├── CMakeLists.txt │ └── tst_qplacesupplier.cpp ├── qplaceuser │ ├── CMakeLists.txt │ └── tst_qplaceuser.cpp ├── qproposedsearchresult │ ├── CMakeLists.txt │ └── tst_qproposedsearchresult.cpp └── utils │ └── qlocationtestutils_p.h ├── baseline ├── CMakeLists.txt └── mapitems │ ├── CMakeLists.txt │ ├── data │ ├── circle │ │ ├── circle_concentric1.qml │ │ └── circle_grid1.qml │ ├── circle_greatCircle │ │ ├── circle_comparison.qml │ │ ├── circle_concentric1.qml │ │ ├── circle_concentric2.qml │ │ ├── circle_concentric3.qml │ │ ├── circle_concentric4.qml │ │ ├── circle_grid1.qml │ │ ├── circle_grid2.qml │ │ ├── circle_grid3.qml │ │ └── circle_poles.qml │ ├── polygon │ │ ├── include │ │ │ ├── GeometryAfrica.qml │ │ │ ├── GeometryAntarctica.qml │ │ │ └── REUSE.toml │ │ ├── polygon_africa1.qml │ │ ├── polygon_africa1_tilt.qml │ │ ├── polygon_africa1_tilt_bear.qml │ │ ├── polygon_africa2.qml │ │ ├── polygon_antarctica1.qml │ │ ├── polygon_antarctica2.qml │ │ ├── polygon_antarctica3.qml │ │ ├── polygon_hole.qml │ │ ├── polygon_hole_bear.qml │ │ └── polygon_hole_tilt.qml │ ├── polygon_greatCircle │ │ ├── polygon_hole.qml │ │ ├── polygon_poles.qml │ │ └── polygon_poles2.qml │ ├── polyline │ │ ├── polyline_dateborder.qml │ │ ├── polyline_dateborder2.qml │ │ ├── polyline_local.qml │ │ └── polyline_poles.qml │ ├── polyline_greatCircle │ │ ├── polyline_dateborder.qml │ │ └── polyline_dateborder2.qml │ ├── rectangle │ │ ├── rectangle_concentric1.qml │ │ ├── rectangle_concentric2.qml │ │ ├── rectangle_concentric3.qml │ │ ├── rectangle_grid1.qml │ │ └── rectangle_grid2.qml │ └── rectangle_greatCircle │ │ └── rectangle_grid1.qml │ └── tst_baseline_mapitems.cpp ├── benchmarks ├── CMakeLists.txt └── mapitems_framecount │ ├── CMakeLists.txt │ ├── circles.qml │ ├── main.cpp │ ├── polygons.qml │ ├── polylines.qml │ ├── qml.qrc │ └── rectangles.qml └── manual ├── CMakeLists.txt ├── mapitems_backends ├── CMakeLists.txt ├── main.cpp ├── main.qml └── qml.qrc ├── mapobjects_tester ├── CMakeLists.txt ├── main.cpp ├── main.qml └── qml.qrc └── mappolyline_tester ├── CMakeLists.txt ├── LongPolyline.qml ├── main.cpp ├── main.qml └── qml.qrc /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | c27275cf3e0800afb92959b478bf4f248db36f73 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/REUSE.toml -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/configure.json -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.15.2 -------------------------------------------------------------------------------- /dist/changes-5.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.2.1 -------------------------------------------------------------------------------- /dist/changes-5.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.3.0 -------------------------------------------------------------------------------- /dist/changes-5.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.3.1 -------------------------------------------------------------------------------- /dist/changes-5.3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.3.2 -------------------------------------------------------------------------------- /dist/changes-5.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.4.0 -------------------------------------------------------------------------------- /dist/changes-5.4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.4.1 -------------------------------------------------------------------------------- /dist/changes-5.4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.4.2 -------------------------------------------------------------------------------- /dist/changes-5.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.5.0 -------------------------------------------------------------------------------- /dist/changes-5.5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.5.1 -------------------------------------------------------------------------------- /dist/changes-5.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.6.0 -------------------------------------------------------------------------------- /dist/changes-5.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.6.1 -------------------------------------------------------------------------------- /dist/changes-5.6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.6.2 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.7.1 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/geojson_viewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/geojson_viewer/GeoJsonDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/GeoJsonDelegate.qml -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/01-point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/01-point.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/02-linestring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/02-linestring.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/03-multipoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/03-multipoint.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/04-polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/04-polygon.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/08-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/08-feature.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/10-countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/10-countries.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/data/11-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/data/11-full.json -------------------------------------------------------------------------------- /examples/location/geojson_viewer/geojson_viewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/geojson_viewer.pro -------------------------------------------------------------------------------- /examples/location/geojson_viewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/main.cpp -------------------------------------------------------------------------------- /examples/location/geojson_viewer/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/main.qml -------------------------------------------------------------------------------- /examples/location/geojson_viewer/mapitems/CircleItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/mapitems/CircleItem.qml -------------------------------------------------------------------------------- /examples/location/geojson_viewer/mapitems/PolygonItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/mapitems/PolygonItem.qml -------------------------------------------------------------------------------- /examples/location/geojson_viewer/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/geojson_viewer/qml.qrc -------------------------------------------------------------------------------- /examples/location/itemview_transitions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/itemview_transitions/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/itemview_transitions/OsloListModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/itemview_transitions/OsloListModel.qml -------------------------------------------------------------------------------- /examples/location/itemview_transitions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/itemview_transitions/main.cpp -------------------------------------------------------------------------------- /examples/location/itemview_transitions/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/itemview_transitions/main.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/mapviewer/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/Main.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/doc/images/mapviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/doc/images/mapviewer.png -------------------------------------------------------------------------------- /examples/location/mapviewer/doc/src/mapviewer.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/doc/src/mapviewer.qdoc -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/Geocode.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/Geocode.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/GeocodeForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/GeocodeForm.ui.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/Locale.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/Locale.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/LocaleForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/LocaleForm.ui.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/Message.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/Message.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/MessageForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/MessageForm.ui.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/ReverseGeocode.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/ReverseGeocode.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/RouteAddress.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/RouteAddress.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/RouteAddressForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/RouteAddressForm.ui.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/RouteCoordinate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/RouteCoordinate.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/RouteList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/RouteList.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/RouteListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/RouteListDelegate.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/forms/RouteListHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/forms/RouteListHeader.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/helper.js -------------------------------------------------------------------------------- /examples/location/mapviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/main.cpp -------------------------------------------------------------------------------- /examples/location/mapviewer/map/MapComponent.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/map/MapComponent.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/map/MapSliders.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/map/MapSliders.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/map/Marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/map/Marker.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/map/MiniMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/map/MiniMap.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/mapviewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/mapviewer.pro -------------------------------------------------------------------------------- /examples/location/mapviewer/menus/ItemPopupMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/menus/ItemPopupMenu.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/menus/MainMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/menus/MainMenu.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/menus/MapPopupMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/menus/MapPopupMenu.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/menus/MarkerPopupMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/menus/MarkerPopupMenu.qml -------------------------------------------------------------------------------- /examples/location/mapviewer/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/qmldir -------------------------------------------------------------------------------- /examples/location/mapviewer/resources/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/resources/marker.png -------------------------------------------------------------------------------- /examples/location/mapviewer/resources/marker_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/resources/marker_blue.png -------------------------------------------------------------------------------- /examples/location/mapviewer/resources/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/resources/scale.png -------------------------------------------------------------------------------- /examples/location/mapviewer/resources/scale_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/mapviewer/resources/scale_end.png -------------------------------------------------------------------------------- /examples/location/minimal_map/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/minimal_map/doc/images/minimal_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/doc/images/minimal_map.png -------------------------------------------------------------------------------- /examples/location/minimal_map/doc/src/minimal_map.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/doc/src/minimal_map.qdoc -------------------------------------------------------------------------------- /examples/location/minimal_map/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/main.cpp -------------------------------------------------------------------------------- /examples/location/minimal_map/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/main.qml -------------------------------------------------------------------------------- /examples/location/minimal_map/minimal_map.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/minimal_map.pro -------------------------------------------------------------------------------- /examples/location/minimal_map/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/minimal_map/qml.qrc -------------------------------------------------------------------------------- /examples/location/places/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/places/doc/images/places.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/doc/images/places.png -------------------------------------------------------------------------------- /examples/location/places/doc/src/places.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/doc/src/places.qdoc -------------------------------------------------------------------------------- /examples/location/places/forms/Message.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/Message.qml -------------------------------------------------------------------------------- /examples/location/places/forms/MessageForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/MessageForm.ui.qml -------------------------------------------------------------------------------- /examples/location/places/forms/PlaceDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/PlaceDetails.qml -------------------------------------------------------------------------------- /examples/location/places/forms/PlaceDetailsForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/PlaceDetailsForm.ui.qml -------------------------------------------------------------------------------- /examples/location/places/forms/SearchBoundingBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/SearchBoundingBox.qml -------------------------------------------------------------------------------- /examples/location/places/forms/SearchBoundingCircle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/SearchBoundingCircle.qml -------------------------------------------------------------------------------- /examples/location/places/forms/SearchCenter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/SearchCenter.qml -------------------------------------------------------------------------------- /examples/location/places/forms/SearchCenterForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/SearchCenterForm.ui.qml -------------------------------------------------------------------------------- /examples/location/places/forms/SearchOptions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/SearchOptions.qml -------------------------------------------------------------------------------- /examples/location/places/forms/SearchOptionsForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/forms/SearchOptionsForm.ui.qml -------------------------------------------------------------------------------- /examples/location/places/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/helper.js -------------------------------------------------------------------------------- /examples/location/places/items/MainMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/items/MainMenu.qml -------------------------------------------------------------------------------- /examples/location/places/items/MapComponent.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/items/MapComponent.qml -------------------------------------------------------------------------------- /examples/location/places/items/SearchBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/items/SearchBar.qml -------------------------------------------------------------------------------- /examples/location/places/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/main.cpp -------------------------------------------------------------------------------- /examples/location/places/places.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/places.pro -------------------------------------------------------------------------------- /examples/location/places/places.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/places.qml -------------------------------------------------------------------------------- /examples/location/places/places.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/places.qrc -------------------------------------------------------------------------------- /examples/location/places/resources/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/categories.png -------------------------------------------------------------------------------- /examples/location/places/resources/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/left.png -------------------------------------------------------------------------------- /examples/location/places/resources/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/marker.png -------------------------------------------------------------------------------- /examples/location/places/resources/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/right.png -------------------------------------------------------------------------------- /examples/location/places/resources/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/scale.png -------------------------------------------------------------------------------- /examples/location/places/resources/scale_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/scale_end.png -------------------------------------------------------------------------------- /examples/location/places/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/search.png -------------------------------------------------------------------------------- /examples/location/places/resources/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/resources/star.png -------------------------------------------------------------------------------- /examples/location/places/views/CategoryDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/CategoryDelegate.qml -------------------------------------------------------------------------------- /examples/location/places/views/CategoryView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/CategoryView.qml -------------------------------------------------------------------------------- /examples/location/places/views/EditorialDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/EditorialDelegate.qml -------------------------------------------------------------------------------- /examples/location/places/views/EditorialPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/EditorialPage.qml -------------------------------------------------------------------------------- /examples/location/places/views/EditorialView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/EditorialView.qml -------------------------------------------------------------------------------- /examples/location/places/views/ImageView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/ImageView.qml -------------------------------------------------------------------------------- /examples/location/places/views/RatingView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/RatingView.qml -------------------------------------------------------------------------------- /examples/location/places/views/ReviewDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/ReviewDelegate.qml -------------------------------------------------------------------------------- /examples/location/places/views/ReviewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/ReviewPage.qml -------------------------------------------------------------------------------- /examples/location/places/views/ReviewView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/ReviewView.qml -------------------------------------------------------------------------------- /examples/location/places/views/SearchResultDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/SearchResultDelegate.qml -------------------------------------------------------------------------------- /examples/location/places/views/SearchResultView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/SearchResultView.qml -------------------------------------------------------------------------------- /examples/location/places/views/SuggestionView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places/views/SuggestionView.qml -------------------------------------------------------------------------------- /examples/location/places_list/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/places_list/Marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/Marker.qml -------------------------------------------------------------------------------- /examples/location/places_list/doc/images/places_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/doc/images/places_list.png -------------------------------------------------------------------------------- /examples/location/places_list/doc/src/places_list.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/doc/src/places_list.qdoc -------------------------------------------------------------------------------- /examples/location/places_list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/main.cpp -------------------------------------------------------------------------------- /examples/location/places_list/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/marker.png -------------------------------------------------------------------------------- /examples/location/places_list/places_list.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/places_list.pro -------------------------------------------------------------------------------- /examples/location/places_list/places_list.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/places_list.qml -------------------------------------------------------------------------------- /examples/location/places_list/places_list.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_list/places_list.qrc -------------------------------------------------------------------------------- /examples/location/places_map/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/places_map/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/Main.qml -------------------------------------------------------------------------------- /examples/location/places_map/PermissionsScreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/PermissionsScreen.qml -------------------------------------------------------------------------------- /examples/location/places_map/PlacesMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/PlacesMap.qml -------------------------------------------------------------------------------- /examples/location/places_map/doc/images/places_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/doc/images/places_map.png -------------------------------------------------------------------------------- /examples/location/places_map/doc/src/places_map.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/doc/src/places_map.qdoc -------------------------------------------------------------------------------- /examples/location/places_map/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/main.cpp -------------------------------------------------------------------------------- /examples/location/places_map/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/marker.png -------------------------------------------------------------------------------- /examples/location/places_map/places_map.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/places_map.pro -------------------------------------------------------------------------------- /examples/location/places_map/places_map.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/places_map/places_map.qrc -------------------------------------------------------------------------------- /examples/location/planespotter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/CMakeLists.txt -------------------------------------------------------------------------------- /examples/location/planespotter/Plane.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/Plane.qml -------------------------------------------------------------------------------- /examples/location/planespotter/airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/airplane.svg -------------------------------------------------------------------------------- /examples/location/planespotter/doc/src/planespotter.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/doc/src/planespotter.qdoc -------------------------------------------------------------------------------- /examples/location/planespotter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/main.cpp -------------------------------------------------------------------------------- /examples/location/planespotter/planespotter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/planespotter.pro -------------------------------------------------------------------------------- /examples/location/planespotter/planespotter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/planespotter.qml -------------------------------------------------------------------------------- /examples/location/planespotter/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/examples/location/planespotter/qml.qrc -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/licenseRule.json -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/configure.cmake -------------------------------------------------------------------------------- /src/location/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/CMakeLists.txt -------------------------------------------------------------------------------- /src/location/configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/configure.json -------------------------------------------------------------------------------- /src/location/declarativemaps/error_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativemaps/error_messages.cpp -------------------------------------------------------------------------------- /src/location/declarativemaps/error_messages_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativemaps/error_messages_p.h -------------------------------------------------------------------------------- /src/location/declarativemaps/qdeclarativegeocodemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativemaps/qdeclarativegeocodemodel.cpp -------------------------------------------------------------------------------- /src/location/declarativemaps/qdeclarativegeocodemodel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativemaps/qdeclarativegeocodemodel_p.h -------------------------------------------------------------------------------- /src/location/declarativemaps/qdeclarativegeojsondata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativemaps/qdeclarativegeojsondata.cpp -------------------------------------------------------------------------------- /src/location/declarativemaps/qdeclarativegeojsondata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativemaps/qdeclarativegeojsondata_p.h -------------------------------------------------------------------------------- /src/location/declarativeplaces/qdeclarativecategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativeplaces/qdeclarativecategory.cpp -------------------------------------------------------------------------------- /src/location/declarativeplaces/qdeclarativecategory_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativeplaces/qdeclarativecategory_p.h -------------------------------------------------------------------------------- /src/location/declarativeplaces/qdeclarativeplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativeplaces/qdeclarativeplace.cpp -------------------------------------------------------------------------------- /src/location/declarativeplaces/qdeclarativeplace_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/declarativeplaces/qdeclarativeplace_p.h -------------------------------------------------------------------------------- /src/location/doc/images/api-mapcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-mapcircle.png -------------------------------------------------------------------------------- /src/location/doc/images/api-mapitemgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-mapitemgroup.png -------------------------------------------------------------------------------- /src/location/doc/images/api-mappolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-mappolygon.png -------------------------------------------------------------------------------- /src/location/doc/images/api-mappolyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-mappolyline.png -------------------------------------------------------------------------------- /src/location/doc/images/api-mapquickitem-anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-mapquickitem-anchor.png -------------------------------------------------------------------------------- /src/location/doc/images/api-mapquickitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-mapquickitem.png -------------------------------------------------------------------------------- /src/location/doc/images/api-maprectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/api-maprectangle.png -------------------------------------------------------------------------------- /src/location/doc/images/mapsdemo-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/mapsdemo-finished.png -------------------------------------------------------------------------------- /src/location/doc/images/mapsdemo-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/mapsdemo-routing.png -------------------------------------------------------------------------------- /src/location/doc/images/mapsdemo-searchgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/mapsdemo-searchgui.png -------------------------------------------------------------------------------- /src/location/doc/images/mapsdemo-verybasic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/images/mapsdemo-verybasic.png -------------------------------------------------------------------------------- /src/location/doc/qtlocation.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/qtlocation.qdocconf -------------------------------------------------------------------------------- /src/location/doc/snippets/cpp/cppqml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/cpp/cppqml.cpp -------------------------------------------------------------------------------- /src/location/doc/snippets/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/cpp/main.cpp -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/maps.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/maps.qml -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/marker.png -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/nmealog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/nmealog.txt -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/places.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/places.qml -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/places_loader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/places_loader.qml -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/plugin.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/plugin.qml -------------------------------------------------------------------------------- /src/location/doc/snippets/declarative/routing.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/declarative/routing.qml -------------------------------------------------------------------------------- /src/location/doc/snippets/maps/routehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/maps/routehandler.h -------------------------------------------------------------------------------- /src/location/doc/snippets/places/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/places/main.cpp -------------------------------------------------------------------------------- /src/location/doc/snippets/places/requesthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/snippets/places/requesthandler.h -------------------------------------------------------------------------------- /src/location/doc/src/example-parameters.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/example-parameters.qdocinc -------------------------------------------------------------------------------- /src/location/doc/src/maps.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/maps.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/place-caveats.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/place-caveats.qdocinc -------------------------------------------------------------------------------- /src/location/doc/src/place-crossref.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/place-crossref.qdocinc -------------------------------------------------------------------------------- /src/location/doc/src/place-definition.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/place-definition.qdocinc -------------------------------------------------------------------------------- /src/location/doc/src/places.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/places.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/esri.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/esri.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/itemsoverlay.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/itemsoverlay.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/mapbox.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/mapbox.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/mapboxgl.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/mapboxgl.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/nokia.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/nokia.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/osm.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/osm.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/plugins/places-backend.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/plugins/places-backend.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qml-maps.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qml-maps.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qt6-changes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qt6-changes.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qtlocation-cpp.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qtlocation-cpp.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qtlocation-examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qtlocation-examples.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qtlocation-geoservices.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qtlocation-geoservices.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qtlocation-qml.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qtlocation-qml.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qtlocation-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qtlocation-toc.qdoc -------------------------------------------------------------------------------- /src/location/doc/src/qtlocation.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/doc/src/qtlocation.qdoc -------------------------------------------------------------------------------- /src/location/maps/MapView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/MapView.qml -------------------------------------------------------------------------------- /src/location/maps/qabstractgeotilecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qabstractgeotilecache.cpp -------------------------------------------------------------------------------- /src/location/maps/qabstractgeotilecache_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qabstractgeotilecache_p.h -------------------------------------------------------------------------------- /src/location/maps/qcache3q_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qcache3q_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocameracapabilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameracapabilities.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeocameracapabilities_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameracapabilities_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocameradata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameradata.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeocameradata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameradata_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocameratiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameratiles.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeocameratiles_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameratiles_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocameratiles_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocameratiles_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocodereply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodereply.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeocodereply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodereply.h -------------------------------------------------------------------------------- /src/location/maps/qgeocodereply_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodereply_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocodingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodingmanager.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeocodingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodingmanager.h -------------------------------------------------------------------------------- /src/location/maps/qgeocodingmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodingmanager_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeocodingmanagerengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodingmanagerengine.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeocodingmanagerengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodingmanagerengine.h -------------------------------------------------------------------------------- /src/location/maps/qgeocodingmanagerengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeocodingmanagerengine_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeofiletilecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeofiletilecache.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeofiletilecache_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeofiletilecache_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeojson.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeojson_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeojson_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomaneuver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaneuver.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeomaneuver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaneuver.h -------------------------------------------------------------------------------- /src/location/maps/qgeomaneuver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaneuver_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomaneuverderived_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaneuverderived_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomap.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeomap_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomap_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomap_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomap_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomappingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomappingmanager.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeomappingmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomappingmanager_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomappingmanager_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomappingmanager_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomappingmanagerengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomappingmanagerengine.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeomappingmanagerengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomappingmanagerengine_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomappingmanagerengine_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomappingmanagerengine_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomaptype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaptype.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeomaptype_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaptype_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeomaptype_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeomaptype_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoprojection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoprojection.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoprojection_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoprojection_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroute.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoroute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroute.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroute_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroute_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeorouteparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouteparser.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeorouteparser_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouteparser_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeorouteparser_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouteparser_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeorouteparserosrmv5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouteparserosrmv5.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeorouteparserosrmv5_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouteparserosrmv5_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutereply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutereply.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoroutereply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutereply.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutereply_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutereply_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeorouterequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouterequest.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeorouterequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouterequest.h -------------------------------------------------------------------------------- /src/location/maps/qgeorouterequest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeorouterequest_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutesegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutesegment.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoroutesegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutesegment.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutesegment_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutesegment_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutingmanager.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoroutingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutingmanager.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutingmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutingmanager_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutingmanagerengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutingmanagerengine.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoroutingmanagerengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutingmanagerengine.h -------------------------------------------------------------------------------- /src/location/maps/qgeoroutingmanagerengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoroutingmanagerengine_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoserviceprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoserviceprovider.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoserviceprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoserviceprovider.h -------------------------------------------------------------------------------- /src/location/maps/qgeoserviceprovider_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoserviceprovider_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeoserviceproviderfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoserviceproviderfactory.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeoserviceproviderfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeoserviceproviderfactory.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmap.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmap_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmap_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmap_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmap_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmappingmanagerengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmappingmanagerengine.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmappingmanagerengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmappingmanagerengine_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmappingmanagerengine_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmappingmanagerengine_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmapreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmapreply.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmapreply_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmapreply_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmapreply_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmapreply_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmapscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmapscene.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmapscene_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmapscene_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotiledmapscene_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotiledmapscene_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotilefetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilefetcher.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotilefetcher_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilefetcher_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotilefetcher_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilefetcher_p_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotilerequestmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilerequestmanager.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotilerequestmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilerequestmanager_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotilespec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilespec.cpp -------------------------------------------------------------------------------- /src/location/maps/qgeotilespec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilespec_p.h -------------------------------------------------------------------------------- /src/location/maps/qgeotilespec_p_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/maps/qgeotilespec_p_p.h -------------------------------------------------------------------------------- /src/location/places/qplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplace.cpp -------------------------------------------------------------------------------- /src/location/places/qplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplace.h -------------------------------------------------------------------------------- /src/location/places/qplace_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplace_p.h -------------------------------------------------------------------------------- /src/location/places/qplaceattribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceattribute.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceattribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceattribute.h -------------------------------------------------------------------------------- /src/location/places/qplaceattribute_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceattribute_p.h -------------------------------------------------------------------------------- /src/location/places/qplacecategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecategory.cpp -------------------------------------------------------------------------------- /src/location/places/qplacecategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecategory.h -------------------------------------------------------------------------------- /src/location/places/qplacecategory_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecategory_p.h -------------------------------------------------------------------------------- /src/location/places/qplacecontactdetail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontactdetail.cpp -------------------------------------------------------------------------------- /src/location/places/qplacecontactdetail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontactdetail.h -------------------------------------------------------------------------------- /src/location/places/qplacecontactdetail_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontactdetail_p.h -------------------------------------------------------------------------------- /src/location/places/qplacecontent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontent.cpp -------------------------------------------------------------------------------- /src/location/places/qplacecontent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontent.h -------------------------------------------------------------------------------- /src/location/places/qplacecontent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontent_p.h -------------------------------------------------------------------------------- /src/location/places/qplacecontentreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontentreply.cpp -------------------------------------------------------------------------------- /src/location/places/qplacecontentreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontentreply.h -------------------------------------------------------------------------------- /src/location/places/qplacecontentrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontentrequest.cpp -------------------------------------------------------------------------------- /src/location/places/qplacecontentrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontentrequest.h -------------------------------------------------------------------------------- /src/location/places/qplacecontentrequest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacecontentrequest_p.h -------------------------------------------------------------------------------- /src/location/places/qplacedetailsreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacedetailsreply.cpp -------------------------------------------------------------------------------- /src/location/places/qplacedetailsreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacedetailsreply.h -------------------------------------------------------------------------------- /src/location/places/qplaceicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceicon.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceicon.h -------------------------------------------------------------------------------- /src/location/places/qplaceicon_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceicon_p.h -------------------------------------------------------------------------------- /src/location/places/qplaceidreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceidreply.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceidreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceidreply.h -------------------------------------------------------------------------------- /src/location/places/qplacemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacemanager.cpp -------------------------------------------------------------------------------- /src/location/places/qplacemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacemanager.h -------------------------------------------------------------------------------- /src/location/places/qplacemanagerengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacemanagerengine.cpp -------------------------------------------------------------------------------- /src/location/places/qplacemanagerengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacemanagerengine.h -------------------------------------------------------------------------------- /src/location/places/qplacemanagerengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacemanagerengine_p.h -------------------------------------------------------------------------------- /src/location/places/qplacematchreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacematchreply.cpp -------------------------------------------------------------------------------- /src/location/places/qplacematchreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacematchreply.h -------------------------------------------------------------------------------- /src/location/places/qplacematchrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacematchrequest.cpp -------------------------------------------------------------------------------- /src/location/places/qplacematchrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacematchrequest.h -------------------------------------------------------------------------------- /src/location/places/qplaceproposedsearchresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceproposedsearchresult.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceproposedsearchresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceproposedsearchresult.h -------------------------------------------------------------------------------- /src/location/places/qplaceproposedsearchresult_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceproposedsearchresult_p.h -------------------------------------------------------------------------------- /src/location/places/qplaceratings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceratings.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceratings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceratings.h -------------------------------------------------------------------------------- /src/location/places/qplaceratings_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceratings_p.h -------------------------------------------------------------------------------- /src/location/places/qplacereply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacereply.cpp -------------------------------------------------------------------------------- /src/location/places/qplacereply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacereply.h -------------------------------------------------------------------------------- /src/location/places/qplacereply_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacereply_p.h -------------------------------------------------------------------------------- /src/location/places/qplaceresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceresult.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceresult.h -------------------------------------------------------------------------------- /src/location/places/qplaceresult_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceresult_p.h -------------------------------------------------------------------------------- /src/location/places/qplacesearchreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchreply.cpp -------------------------------------------------------------------------------- /src/location/places/qplacesearchreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchreply.h -------------------------------------------------------------------------------- /src/location/places/qplacesearchrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchrequest.cpp -------------------------------------------------------------------------------- /src/location/places/qplacesearchrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchrequest.h -------------------------------------------------------------------------------- /src/location/places/qplacesearchrequest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchrequest_p.h -------------------------------------------------------------------------------- /src/location/places/qplacesearchresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchresult.cpp -------------------------------------------------------------------------------- /src/location/places/qplacesearchresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchresult.h -------------------------------------------------------------------------------- /src/location/places/qplacesearchresult_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchresult_p.h -------------------------------------------------------------------------------- /src/location/places/qplacesearchsuggestionreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchsuggestionreply.cpp -------------------------------------------------------------------------------- /src/location/places/qplacesearchsuggestionreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesearchsuggestionreply.h -------------------------------------------------------------------------------- /src/location/places/qplacesupplier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesupplier.cpp -------------------------------------------------------------------------------- /src/location/places/qplacesupplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesupplier.h -------------------------------------------------------------------------------- /src/location/places/qplacesupplier_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplacesupplier_p.h -------------------------------------------------------------------------------- /src/location/places/qplaceuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceuser.cpp -------------------------------------------------------------------------------- /src/location/places/qplaceuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceuser.h -------------------------------------------------------------------------------- /src/location/places/qplaceuser_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/qplaceuser_p.h -------------------------------------------------------------------------------- /src/location/places/unsupportedreplies_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/places/unsupportedreplies_p.h -------------------------------------------------------------------------------- /src/location/qlocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/qlocation.cpp -------------------------------------------------------------------------------- /src/location/qlocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/qlocation.h -------------------------------------------------------------------------------- /src/location/qlocationglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/qlocationglobal.h -------------------------------------------------------------------------------- /src/location/qlocationglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/qlocationglobal_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativecirclemapitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativecirclemapitem.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativecirclemapitem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativecirclemapitem_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativegeomap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativegeomap.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativegeomap_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativegeomap_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativegeomapitembase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativegeomapitembase.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativegeomapitembase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativegeomapitembase_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativegeomapitemview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativegeomapitemview.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativegeomapitemview_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativegeomapitemview_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativepolygonmapitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativepolygonmapitem.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativepolygonmapitem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativepolygonmapitem_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativeroutemapitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativeroutemapitem.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qdeclarativeroutemapitem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qdeclarativeroutemapitem_p.h -------------------------------------------------------------------------------- /src/location/quickmapitems/qgeomapitemgeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qgeomapitemgeometry.cpp -------------------------------------------------------------------------------- /src/location/quickmapitems/qgeomapitemgeometry_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/location/quickmapitems/qgeomapitemgeometry_p.h -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/esri.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/esri.qrc -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/esri_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/esri_plugin.json -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geocodereply_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geocodereply_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geocodereply_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geocodereply_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geomapsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geomapsource.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geomapsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geomapsource.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/georoutejsonparser_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/georoutejsonparser_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/georoutejsonparser_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/georoutejsonparser_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/georoutereply_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/georoutereply_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/georoutereply_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/georoutereply_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geotiledmap_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geotiledmap_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geotiledmap_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geotiledmap_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geotiledmapreply_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geotiledmapreply_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geotiledmapreply_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geotiledmapreply_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geotilefetcher_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geotilefetcher_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/geotilefetcher_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/geotilefetcher_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/maps.json -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/placecategoriesreply_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/placecategoriesreply_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/placemanagerengine_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/placemanagerengine_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/placemanagerengine_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/placemanagerengine_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/placesearchreply_esri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/placesearchreply_esri.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/esri/placesearchreply_esri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/esri/placesearchreply_esri.h -------------------------------------------------------------------------------- /src/plugins/geoservices/itemsoverlay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/itemsoverlay/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/LICENSE.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/aerialway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/aerialway.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/airfield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/airfield.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/airport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/airport.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/aquarium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/aquarium.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/art-gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/art-gallery.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/attraction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/attraction.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/bakery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/bakery.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/bank.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/bar.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/barrier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/barrier.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/baseball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/baseball.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/bbq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/bbq.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/beer.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/bicycle.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/buddhism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/buddhism.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/building.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/bus.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/cafe.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/campsite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/campsite.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/car.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/castle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/castle.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/cemetery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/cemetery.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/cinema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/cinema.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/circle.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/city.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/college.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/college.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/cricket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/cricket.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/cross.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/dam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/dam.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/danger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/danger.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/dentist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/dentist.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/doctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/doctor.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/dog-park.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/dog-park.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/embassy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/embassy.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/entrance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/entrance.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/farm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/farm.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/fence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/fence.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/ferry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/ferry.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/florist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/florist.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/fuel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/fuel.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/gaming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/gaming.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/garden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/garden.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/gift.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/golf.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/grocery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/grocery.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/harbor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/harbor.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/heart.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/heliport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/heliport.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/home.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/hospital.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/industry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/industry.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/karaoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/karaoke.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/landmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/landmark.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/landuse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/landuse.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/laundry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/laundry.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/library.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/lodging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/lodging.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/logging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/logging.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/marker.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/monument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/monument.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/mountain.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/museum.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/music.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/natural.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/natural.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/park.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/park.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/parking.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/pharmacy.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/pitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/pitch.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/police.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/police.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/post.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/prison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/prison.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/rail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/rail.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/rocket.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/school.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/scooter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/scooter.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/shelter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/shelter.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/shop.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/skiing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/skiing.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/soccer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/soccer.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/square.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/stadium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/stadium.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/star.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/suitcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/suitcase.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/sushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/sushi.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/swimming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/swimming.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/teahouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/teahouse.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/tennis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/tennis.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/theatre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/theatre.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/toilet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/toilet.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/town.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/town.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/triangle.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/village.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/village.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/volcano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/volcano.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/water.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/wetland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/wetland.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/maki-4.0.0/zoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/maki-4.0.0/zoo.svg -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/mapbox.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/mapbox.qrc -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/mapbox_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/mapbox_plugin.json -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qgeocodereplymapbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qgeocodereplymapbox.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qgeocodereplymapbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qgeocodereplymapbox.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qgeomapreplymapbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qgeomapreplymapbox.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qgeoroutereplymapbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qgeoroutereplymapbox.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qmapboxcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qmapboxcommon.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/mapbox/qmapboxcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapbox/qmapboxcommon.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/logo.png -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/mapboxgl.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/mapboxgl.qrc -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/mapboxgl_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/mapboxgl_plugin.json -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/qgeomapmapboxgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/qgeomapmapboxgl.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/qgeomapmapboxgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/qgeomapmapboxgl.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/qgeomapmapboxgl_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/qgeomapmapboxgl_p.h -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/qsgmapboxglnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/qsgmapboxglnode.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/mapboxgl/qsgmapboxglnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/mapboxgl/qsgmapboxglnode.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/logo.png -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/marclanguagecodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/marclanguagecodes.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/nokia.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/nokia.qrc -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/nokia_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/nokia_plugin.json -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/placesv2/placesv2.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/placesv2/placesv2.pri -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeocodejsonparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeocodejsonparser.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeocodejsonparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeocodejsonparser.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeocodereply_nokia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeocodereply_nokia.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeocodereply_nokia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeocodereply_nokia.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeoerror_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeoerror_messages.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeoerror_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeoerror_messages.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeofiletilecachenokia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeofiletilecachenokia.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeomapreply_nokia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeomapreply_nokia.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeomapreply_nokia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeomapreply_nokia.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeomapversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeomapversion.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeomapversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeomapversion.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeoroutereply_nokia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeoroutereply_nokia.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeoroutereply_nokia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeoroutereply_nokia.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeoroutexmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeoroutexmlparser.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeoroutexmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeoroutexmlparser.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeotiledmap_nokia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeotiledmap_nokia.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeotiledmap_nokia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeotiledmap_nokia.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeotilefetcher_nokia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeotilefetcher_nokia.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeouriprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeouriprovider.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/qgeouriprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/qgeouriprovider.h -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/uri_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/uri_constants.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/nokia/uri_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/nokia/uri_constants.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/osm_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/osm_plugin.json -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/cycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/cycle -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/hiking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/hiking -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/satellite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/satellite -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/street -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/street-hires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/street-hires -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/terrain -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/providers/5.8/transit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/providers/5.8/transit -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeocodereplyosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeocodereplyosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeocodereplyosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeocodereplyosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeofiletilecacheosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeofiletilecacheosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeofiletilecacheosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeofiletilecacheosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeomapreplyosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeomapreplyosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeomapreplyosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeomapreplyosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeorouteparserosrmv4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeorouteparserosrmv4.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeorouteparserosrmv4_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeorouteparserosrmv4_p.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeoroutereplyosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeoroutereplyosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeoroutereplyosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeoroutereplyosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeotiledmaposm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeotiledmaposm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeotiledmaposm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeotiledmaposm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeotilefetcherosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeotilefetcherosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeotilefetcherosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeotilefetcherosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeotileproviderosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeotileproviderosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qgeotileproviderosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qgeotileproviderosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qplacecategoriesreplyosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qplacecategoriesreplyosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qplacemanagerengineosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qplacemanagerengineosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qplacemanagerengineosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qplacemanagerengineosm.h -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qplacesearchreplyosm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qplacesearchreplyosm.cpp -------------------------------------------------------------------------------- /src/plugins/geoservices/osm/qplacesearchreplyosm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/src/plugins/geoservices/osm/qplacesearchreplyosm.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/BLACKLIST: -------------------------------------------------------------------------------- 1 | # QTBUG-90244 flaky test 2 | [ReviewModel::test_reset] 3 | windows 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/main.cpp -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_category.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_category.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_geocoding.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_geocoding.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_place.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_place.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_placeicon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_placeicon.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_plugin.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_plugin.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_ratings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_ratings.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_routing.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_routing.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_supplier.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_supplier.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/tst_user.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/tst_user.qml -------------------------------------------------------------------------------- /tests/auto/declarative_location_core/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_location_core/utils.js -------------------------------------------------------------------------------- /tests/auto/declarative_mappolyline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_mappolyline/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/declarative_mappolyline/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_mappolyline/main.cpp -------------------------------------------------------------------------------- /tests/auto/declarative_ui/BLACKLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/BLACKLIST -------------------------------------------------------------------------------- /tests/auto/declarative_ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/declarative_ui/Delegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/Delegate.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/ItemGroup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/ItemGroup.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/Model.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/Model.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/main.cpp -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_error.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_error.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_flick.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_flick.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_item.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_item.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_item_details.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_item_details.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_itemview.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_itemview.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_keepgrab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_keepgrab.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_maptype.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_maptype.qml -------------------------------------------------------------------------------- /tests/auto/declarative_ui/tst_map_mouse.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarative_ui/tst_map_mouse.qml -------------------------------------------------------------------------------- /tests/auto/declarativetestplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarativetestplugin/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/declarativetestplugin/locationtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarativetestplugin/locationtest.cpp -------------------------------------------------------------------------------- /tests/auto/declarativetestplugin/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarativetestplugin/qmldir -------------------------------------------------------------------------------- /tests/auto/declarativetestplugin/testhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/declarativetestplugin/testhelper.h -------------------------------------------------------------------------------- /tests/auto/geotestplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/geotestplugin/geotestplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/geotestplugin.json -------------------------------------------------------------------------------- /tests/auto/geotestplugin/place_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/place_data.json -------------------------------------------------------------------------------- /tests/auto/geotestplugin/qgeotiledmap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/qgeotiledmap_test.cpp -------------------------------------------------------------------------------- /tests/auto/geotestplugin/qgeotiledmap_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/qgeotiledmap_test.h -------------------------------------------------------------------------------- /tests/auto/geotestplugin/qgeotilefetcher_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/qgeotilefetcher_test.h -------------------------------------------------------------------------------- /tests/auto/geotestplugin/qplacemanagerengine_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/qplacemanagerengine_test.h -------------------------------------------------------------------------------- /tests/auto/geotestplugin/testdata.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/geotestplugin/testdata.qrc -------------------------------------------------------------------------------- /tests/auto/maptype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/maptype/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/maptype/tst_maptype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/maptype/tst_maptype.cpp -------------------------------------------------------------------------------- /tests/auto/nokia_services/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/routing/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/error-no-route.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/routing/error-no-route.xml -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/invalid-response-no-calculateroute-tag.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/optim-fastest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/routing/optim-fastest.xml -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/optim-shortest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/routing/optim-shortest.xml -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/travelmode-car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/routing/travelmode-car.xml -------------------------------------------------------------------------------- /tests/auto/nokia_services/routing/tst_routing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/nokia_services/routing/tst_routing.cpp -------------------------------------------------------------------------------- /tests/auto/placemanager_utils/placemanager_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/placemanager_utils/placemanager_utils.cpp -------------------------------------------------------------------------------- /tests/auto/placemanager_utils/placemanager_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/placemanager_utils/placemanager_utils.h -------------------------------------------------------------------------------- /tests/auto/placesplugin_unsupported/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/placesplugin_unsupported/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/placesplugin_unsupported/placesplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/placesplugin_unsupported/placesplugin.json -------------------------------------------------------------------------------- /tests/auto/qgeocameracapabilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocameracapabilities/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeocameradata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocameradata/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeocameradata/tst_qgeocameradata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocameradata/tst_qgeocameradata.cpp -------------------------------------------------------------------------------- /tests/auto/qgeocameratiles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocameratiles/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeocameratiles/tst_qgeocameratiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocameratiles/tst_qgeocameratiles.cpp -------------------------------------------------------------------------------- /tests/auto/qgeocodereply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodereply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeocodereply/tst_qgeocodereply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodereply/tst_qgeocodereply.cpp -------------------------------------------------------------------------------- /tests/auto/qgeocodereply/tst_qgeocodereply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodereply/tst_qgeocodereply.h -------------------------------------------------------------------------------- /tests/auto/qgeocodingmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodingmanager/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeocodingmanager/tst_qgeocodingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodingmanager/tst_qgeocodingmanager.cpp -------------------------------------------------------------------------------- /tests/auto/qgeocodingmanager/tst_qgeocodingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodingmanager/tst_qgeocodingmanager.h -------------------------------------------------------------------------------- /tests/auto/qgeocodingmanagerplugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeocodingmanagerplugins/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeojson/01-point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/01-point.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/02-linestring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/02-linestring.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/03-multipoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/03-multipoint.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/04-polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/04-polygon.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/05-multilinestring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/05-multilinestring.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/06-multipolygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/06-multipolygon.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/07-geometrycollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/07-geometrycollection.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/08-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/08-feature.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/09-featurecollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/09-featurecollection.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/10-countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/10-countries.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/11-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/11-full.json -------------------------------------------------------------------------------- /tests/auto/qgeojson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeojson/LICENSE.10-countries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/LICENSE.10-countries -------------------------------------------------------------------------------- /tests/auto/qgeojson/tst_qgeojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeojson/tst_qgeojson.cpp -------------------------------------------------------------------------------- /tests/auto/qgeomaneuver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeomaneuver/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeomaneuver/tst_qgeomaneuver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeomaneuver/tst_qgeomaneuver.cpp -------------------------------------------------------------------------------- /tests/auto/qgeomaneuver/tst_qgeomaneuver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeomaneuver/tst_qgeomaneuver.h -------------------------------------------------------------------------------- /tests/auto/qgeoroute/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroute/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeoroute/tst_qgeoroute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroute/tst_qgeoroute.cpp -------------------------------------------------------------------------------- /tests/auto/qgeoroute/tst_qgeoroute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroute/tst_qgeoroute.h -------------------------------------------------------------------------------- /tests/auto/qgeoroutereply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutereply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeoroutereply/tst_qgeoroutereply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutereply/tst_qgeoroutereply.cpp -------------------------------------------------------------------------------- /tests/auto/qgeoroutereply/tst_qgeoroutereply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutereply/tst_qgeoroutereply.h -------------------------------------------------------------------------------- /tests/auto/qgeorouterequest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeorouterequest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeorouterequest/tst_qgeorouterequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeorouterequest/tst_qgeorouterequest.cpp -------------------------------------------------------------------------------- /tests/auto/qgeorouterequest/tst_qgeorouterequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeorouterequest/tst_qgeorouterequest.h -------------------------------------------------------------------------------- /tests/auto/qgeoroutesegment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutesegment/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeoroutesegment/tst_qgeoroutesegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutesegment/tst_qgeoroutesegment.cpp -------------------------------------------------------------------------------- /tests/auto/qgeoroutesegment/tst_qgeoroutesegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutesegment/tst_qgeoroutesegment.h -------------------------------------------------------------------------------- /tests/auto/qgeoroutexmlparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutexmlparser/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeoroutexmlparser/fixtures.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutexmlparser/fixtures.qrc -------------------------------------------------------------------------------- /tests/auto/qgeoroutexmlparser/route1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutexmlparser/route1.xml -------------------------------------------------------------------------------- /tests/auto/qgeoroutexmlparser/route2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutexmlparser/route2.xml -------------------------------------------------------------------------------- /tests/auto/qgeoroutingmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutingmanager/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeoroutingmanager/tst_qgeoroutingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutingmanager/tst_qgeoroutingmanager.h -------------------------------------------------------------------------------- /tests/auto/qgeoroutingmanagerplugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoroutingmanagerplugins/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeoserviceprovider/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeoserviceprovider/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeotiledmap/BLACKLIST: -------------------------------------------------------------------------------- 1 | [fetchTiles] 2 | b2qt ci 3 | -------------------------------------------------------------------------------- /tests/auto/qgeotiledmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeotiledmap/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp -------------------------------------------------------------------------------- /tests/auto/qgeotiledmapscene/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeotiledmapscene/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeotiledmapscene/tst_qgeotiledmapscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeotiledmapscene/tst_qgeotiledmapscene.cpp -------------------------------------------------------------------------------- /tests/auto/qgeotilespec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeotilespec/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qgeotilespec/tst_qgeotilespec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qgeotilespec/tst_qgeotilespec.cpp -------------------------------------------------------------------------------- /tests/auto/qmlinterface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestAddress.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestAddress.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestCategory.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestCategory.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestContactDetail.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestContactDetail.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestIcon.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestLocation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestLocation.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestPlace.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestPlace.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestPlaceAttribute.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestPlaceAttribute.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestRatings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestRatings.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestSupplier.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestSupplier.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/data/TestUser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/data/TestUser.qml -------------------------------------------------------------------------------- /tests/auto/qmlinterface/tst_qmlinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qmlinterface/tst_qmlinterface.cpp -------------------------------------------------------------------------------- /tests/auto/qplace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplace/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplace/tst_qplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplace/tst_qplace.cpp -------------------------------------------------------------------------------- /tests/auto/qplaceattribute/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceattribute/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplaceattribute/tst_qplaceattribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceattribute/tst_qplaceattribute.cpp -------------------------------------------------------------------------------- /tests/auto/qplacecategory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacecategory/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacecategory/tst_qplacecategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacecategory/tst_qplacecategory.cpp -------------------------------------------------------------------------------- /tests/auto/qplacecontactdetail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacecontactdetail/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacecontentrequest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacecontentrequest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacedetailsreply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacedetailsreply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacemanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacemanager/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacemanager/tst_qplacemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacemanager/tst_qplacemanager.cpp -------------------------------------------------------------------------------- /tests/auto/qplacemanager_nokia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacemanager_nokia/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacemanager_unsupported/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacemanager_unsupported/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacematchreply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacematchreply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacematchreply/tst_qplacematchreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacematchreply/tst_qplacematchreply.cpp -------------------------------------------------------------------------------- /tests/auto/qplacematchrequest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacematchrequest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplaceratings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceratings/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplaceratings/tst_qplaceratings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceratings/tst_qplaceratings.cpp -------------------------------------------------------------------------------- /tests/auto/qplacereply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacereply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacereply/tst_qplacereply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacereply/tst_qplacereply.cpp -------------------------------------------------------------------------------- /tests/auto/qplaceresult/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceresult/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplaceresult/tst_qplaceresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceresult/tst_qplaceresult.cpp -------------------------------------------------------------------------------- /tests/auto/qplacesearchreply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesearchreply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacesearchreply/tst_qplacesearchreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesearchreply/tst_qplacesearchreply.cpp -------------------------------------------------------------------------------- /tests/auto/qplacesearchrequest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesearchrequest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacesearchresult/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesearchresult/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacesearchsuggestionreply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesearchsuggestionreply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacesupplier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesupplier/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplacesupplier/tst_qplacesupplier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplacesupplier/tst_qplacesupplier.cpp -------------------------------------------------------------------------------- /tests/auto/qplaceuser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceuser/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qplaceuser/tst_qplaceuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qplaceuser/tst_qplaceuser.cpp -------------------------------------------------------------------------------- /tests/auto/qproposedsearchresult/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/qproposedsearchresult/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/utils/qlocationtestutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/auto/utils/qlocationtestutils_p.h -------------------------------------------------------------------------------- /tests/baseline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/baseline/CMakeLists.txt -------------------------------------------------------------------------------- /tests/baseline/mapitems/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/baseline/mapitems/CMakeLists.txt -------------------------------------------------------------------------------- /tests/baseline/mapitems/data/circle/circle_grid1.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/baseline/mapitems/data/circle/circle_grid1.qml -------------------------------------------------------------------------------- /tests/baseline/mapitems/data/polygon/polygon_hole.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/baseline/mapitems/data/polygon/polygon_hole.qml -------------------------------------------------------------------------------- /tests/baseline/mapitems/tst_baseline_mapitems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/baseline/mapitems/tst_baseline_mapitems.cpp -------------------------------------------------------------------------------- /tests/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/circles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/circles.qml -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/main.cpp -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/polygons.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/polygons.qml -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/polylines.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/polylines.qml -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/qml.qrc -------------------------------------------------------------------------------- /tests/benchmarks/mapitems_framecount/rectangles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/benchmarks/mapitems_framecount/rectangles.qml -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mapitems_backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapitems_backends/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mapitems_backends/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapitems_backends/main.cpp -------------------------------------------------------------------------------- /tests/manual/mapitems_backends/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapitems_backends/main.qml -------------------------------------------------------------------------------- /tests/manual/mapitems_backends/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapitems_backends/qml.qrc -------------------------------------------------------------------------------- /tests/manual/mapobjects_tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapobjects_tester/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mapobjects_tester/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapobjects_tester/main.cpp -------------------------------------------------------------------------------- /tests/manual/mapobjects_tester/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapobjects_tester/main.qml -------------------------------------------------------------------------------- /tests/manual/mapobjects_tester/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mapobjects_tester/qml.qrc -------------------------------------------------------------------------------- /tests/manual/mappolyline_tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mappolyline_tester/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mappolyline_tester/LongPolyline.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mappolyline_tester/LongPolyline.qml -------------------------------------------------------------------------------- /tests/manual/mappolyline_tester/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mappolyline_tester/main.cpp -------------------------------------------------------------------------------- /tests/manual/mappolyline_tester/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mappolyline_tester/main.qml -------------------------------------------------------------------------------- /tests/manual/mappolyline_tester/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlocation/HEAD/tests/manual/mappolyline_tester/qml.qrc --------------------------------------------------------------------------------