blob: 7dbe21fbbf884934607e1f8c3cc1b3202c862b76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# navigation
#reference
https://doc-snapshots.qt.io/qt5-5.9/qtlocation-mapviewer-example.html
#build step
NOTE: To use OpenStreetMaps instead of MapBox you should replace
the qmake step below with 'qmake ../ ENABLE_OSM=1'
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
|