From c8d0de473418fb0312876e22a18f0fbda54c4b38 Mon Sep 17 00:00:00 2001 From: wang_zhiqiang Date: Thu, 30 May 2019 10:01:18 +0800 Subject: update als2019 navigation --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..fb77f41 --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ +# navigation + +#reference + +https://doc-snapshots.qt.io/qt5-5.9/qtlocation-mapviewer-example.html + +#build step + +source /SDK_PATH/environment-setup-aarch64-agl-linux + +mkdir build + +cd build + +qmake ../ + +make + +#configuration + +Please set mapAccessToken, mapStyleUrl, speed, +interval, latitude and longitude in JSON format +in /etc/naviconfig.ini + +mapAccessToken sets Access token provided by Mapbox. +speed sets vehicle speed in km / h. +interval sets the screen update interval in milliseconds. +latitude, longitute sets the current position at application start. +mapStyleUrls sets Mapbox style URLs. + +example +{ + "mapAccessToken":"pk.***********", + "speed":60, + "interval":100, + "latitude":36.1363, + "longitute":-115.151, + "mapStyleUrls":"mapbox://styles/mapbox/dark-v9" +} + +#Qt Creator +If you want to start from Qt Creater +add 'DEFINES * = DESKTOP' to project > build step > additional argument + -- cgit 1.2.3-korg