Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qtlocation
    Log in to post

    • UNSOLVED is there 3-D Mapping in QtLocation Map?
      QML and Qt Quick • qml qtlocation osm openstreetmaps • • akadirdd  

      1
      0
      Votes
      1
      Posts
      136
      Views

      No one has replied

    • SOLVED QCoreApplication::postEvent: Unexpected null receiver when calling .addwaypoint function of RouteModel in embedded device.
      QML and Qt Quick • qml qtquick qtlocation • • Sam_George  

      3
      0
      Votes
      3
      Posts
      1091
      Views

      Solved the issue by upgrading Qt from 5.5 to 5.9.
    • UNSOLVED HTML5 Geolocation in QtWebEngine on Ubuntu 18.04
      QtWebEngine • qtwebengine qtlocation gps ubuntu 18.04 gpsd • • Yakov Eremin  

      2
      0
      Votes
      2
      Posts
      438
      Views

      @Yakov-Eremin read this: https://doc.qt.io/qt-5/qtwebengine-features.html#html5-geolocation to check if geoclue is working properly simply test if it delivers a position: https://doc.qt.io/qt-5/qml-qtpositioning-positionsource.html#example-usage
    • UNSOLVED QtLocation OSM custom map is empty
      QML and Qt Quick • qml map qtlocation osm • • ziiyaa  

      3
      0
      Votes
      3
      Posts
      1099
      Views

      @ziiyaa Hello, Did you solve your problem? I have a similar issue where my Plugin works on a Debian but not on Ubuntu, where the supportedMapTypes array is empty.
    • UNSOLVED passing coordinate value from c++ source file to qml file
      QML and Qt Quick • qml qtquick map qtlocation offline • • hem1  

      2
      0
      Votes
      2
      Posts
      592
      Views

      Use a separate QObject-derived class and set it as context property. Other options: https://doc.qt.io/qt-5/qtqml-cppintegration-topic.html https://doc.qt.io/qt-5/qtqml-cppintegration-interactqmlfromcpp.html
    • UNSOLVED Qt offline maps using osm tiles
      QML and Qt Quick • qml map qtlocation osm offline • • hem1  

      12
      1
      Votes
      12
      Posts
      5287
      Views

      @vpanchal @raven-worx Hi I've tried: file:///home/dev/Downloads/OsmOffline/offline_tiles/ This does not work. Am I doing something wrong? Did it work for you?
    • UNSOLVED Display different routes for different start/end points using Qt Locations
      QML and Qt Quick • qml map qtlocation mapitemview • • follunnass  

      1
      0
      Votes
      1
      Posts
      284
      Views

      No one has replied

    • UNSOLVED How to add MapboxGL support?
      3rd Party Software • linux map qtlocation mapboxgl how to • • twffrank  

      1
      0
      Votes
      1
      Posts
      924
      Views

      No one has replied

    • SOLVED How to correctly pass property to PluginParameter value from C++ code?
      QML and Qt Quick • plugin qtlocation osm • • someoneinthebox  

      4
      0
      Votes
      4
      Posts
      1719
      Views

      If someone interesting you can solve problem like this: C++ side: QVariantMap params { {"osm.mapping.highdpi_tiles", YOUR_CUSTOM_VALUE}, {"osm.mapping.offline.directory", YOUR_CUSTOM_VALUE}, {"osm.mapping.cache.directory", YOUR_CUSTOM_VALUE} }; QQuickView *view = new QQuickView; view->setSource(QUrl(QStringLiteral("qrc:/qml/OSMView.qml"))); QObject *item = (QObject *) view->rootObject(); QMetaObject::invokeMethod(item, "initializePlugin", Q_ARG(QVariant, QVariant::fromValue(params))); QML side: Item { id: osmMain property variant parameters function initializePlugin(pluginParameters) { var parameters = new Array; for(var prop in pluginParameters) { var parameter = Qt.createQmlObject('import QtLocation 5.6; PluginParameter{ name: "'+ prop + '"; value: "' + pluginParameters[prop] + '"}', map) parameters.push(parameter) } osmMain.parameters = parameters map.plugin = Qt.createQmlObject('import QtLocation 5.6; Plugin{ name: "osm"; parameters: osmMain.parameters }', osmMain) } Map { id: map <...> } <...> }
    • UNSOLVED Can qtlocation work with gpsd instead of gypsy?
      General and Desktop • linux qtlocation gps gpsd gypsy • • Aras  

      1
      0
      Votes
      1
      Posts
      747
      Views

      No one has replied

    • UNSOLVED Using QtLocation Map with QWidget::createWindowContainer() fails to load
      QML and Qt Quick • qml map bug qtlocation qquickview • • dirtshell  

      7
      0
      Votes
      7
      Posts
      5256
      Views

      Hey.... how did you solved this probleam??. I''m also facing the same issue - white screen. Thanks.
    • UNSOLVED How to add custom tile server in qt location?
      QML and Qt Quick • qml qtlocation location osm • • Vitek  

      1
      0
      Votes
      1
      Posts
      563
      Views

      No one has replied

    • UNSOLVED QtLocation Tilt & Bearing
      General and Desktop • map qtlocation • • vladstelmahovsky  

      2
      0
      Votes
      2
      Posts
      860
      Views

      @vladstelmahovsky Hi! Better ask this on the developers mailing list, this forum is more for end users.
    • UNSOLVED RouteQuery
      General and Desktop • map qtlocation routequery • • QMotza  

      4
      0
      Votes
      4
      Posts
      1072
      Views

      @QMotza read about QtPosition read about reverse geocode read about routequeries yes, you can do whatever you want with Qt, but...you have to read a lot
    • UNSOLVED MouseArea inside MapQuickItem not clickable?
      General and Desktop • mousearea qtlocation clicked mapquickitem • • Nandakishore  

      2
      0
      Votes
      2
      Posts
      1446
      Views

      I just stumbled accros the same odd behavior with Qt 5.7.1. However, the strange thing is, that it seems to be only a problem on android (on windows it's fine). Does anybody know if that's a (already reported) bug?
    • SOLVED Multiple models in Map (QtLocation)
      QML and Qt Quick • model delegate map qtlocation • • Alexander_Lanin  

      4
      0
      Votes
      4
      Posts
      1623
      Views

      @Alexander_Lanin didn't see you already found it before I submit my reply...
    • Qt/QML Workshop materials
      The Lounge • qtlocation discussion workshop learning • • Charby  

      6
      4
      Votes
      6
      Posts
      4611
      Views

      Our March meetup session materials are now available. This time, the workshop aim was to discover the Qt.controls.labs. This time, I didn't create a new project for the workshop but used the Gallery example.
    • SOLVED How to change the map type of a simple QML map component?
      QML and Qt Quick • map qtlocation here maps maptype activemaptype • • nmnandakishore  

      6
      0
      Votes
      6
      Posts
      5285
      Views

      @nmnandakishore You are welcome. By the way, you might be interested in viewing this post containing the materials used during my last meetup which was focus on QtLocation - you could find helpful tips for managing maps, point of interests and route.
    • Yet another Route plugin for QtLocation
      General and Desktop • plugin qtlocation navigation • • vladstelmahovsky  

      36
      3
      Votes
      36
      Posts
      11137
      Views

      Thanks for the google map plugin, I study this post, the codes of your plugin and got some questions 1 : All of the information of google map are obtained by static api of google map? 2 : How could we support offline routing, offline search by term? By now all of the routing information are get from the server, to implement offline routing, we need to a : download require map, data from the server b : write our own algorithms to search the locations by terms and routing? I guess every maps data got their own format, but the locations searching and routing algorithms should be the same? 3 : QGeoTileFetcherGooglemaps is the main class of this plugin, which in charge of create request(by static api) and get the results back by the other classes? Thanks a lot
    • Reverse geocoding with QtLocation
      QML and Qt Quick • qtlocation qtpositioning geocode • • ealione  

      1
      0
      Votes
      1
      Posts
      615
      Views

      No one has replied

    • Qt 5.5: Compile with QtLocation technology preview
      Installation and Deployment • qtlocation • • hamer  

      2
      0
      Votes
      2
      Posts
      696
      Views

      Run configure in verbose mode to see why it is being skipped. Also, make sure QtLocation folder is there in your source directory.
    • QtLocation Api help
      General and Desktop • qtlocation qtpositioning • • mrboybutler  

      1
      0
      Votes
      1
      Posts
      860
      Views

      No one has replied

    • Compile QtLocation for android [install_target]
      Installation and Deployment • android installation qtlocation • • quicky  

      2
      0
      Votes
      2
      Posts
      1334
      Views

      By just uncommenting the line: #INSTALLS += target additional in mapviewer.pro, It runs up and shows the map on my android phone, great!