-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.qml
More file actions
255 lines (204 loc) · 7.87 KB
/
main.qml
File metadata and controls
255 lines (204 loc) · 7.87 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import QtQuick 2.12
import QtQuick.Window 2.12
import QtLocation 5.12
import QtQml 2.12
import QtPositioning 5.12
Window {
width: 640
height: 480
visible: true
title: qsTr("My Maps")
Plugin {
id: somePlugin
name: "mapbox"
PluginParameter { name: "mapbox.map_id"; value: "mapbox.satellite" }
PluginParameter { name: "mapbox.access_token"; value: "pk.eyJ1Ijoic3luYXNpdXMiLCJhIjoiY2lnM3JrdmRjMjJ4b3RqbTNhZ2hmYzlkbyJ9.EA86y0wrXX1eo64lJPTepw" }
}
Plugin {
id: otherPlugin
name: "osm"
//Component.onCompleted: {
// console.debug("supports geocoding", supportsGeocoding());
// console.debug("supports mapping", supportsMapping());
// console.debug("supports places", supportsPlaces());
// console.debug("supports routing", supportsRouting());
//}
}
RouteModel {
id: routeModel
plugin: otherPlugin
autoUpdate: true
query: RouteQuery {}
Component.onCompleted: {
console.log(locationSource.coordinate)
query.addWaypoint(locationSource.coordinate);
query.addWaypoint(QtPositioning.coordinate(40.138322756239056, 17.715292842046768));
routeModel.update();
}
onStatusChanged: console.debug("current route model status", status, count, errorString)
}
PlaceSearchModel {
id: searchModel
plugin: otherPlugin
searchTerm: "food"
searchArea: QtPositioning.circle(map.center, 10000)
Component.onCompleted: update()
onStatusChanged: console.debug("current search model status", status, count, errorString())
}
PositionSource {
id: src
updateInterval: 1000
active: true
onPositionChanged: {
var coord = src.position.coordinate;
console.debug("current position:", coord.latitude, coord.longitude);
}
}
Connections{
target: locationSource
onCoordinateChanged:{
console.log("COORDINATE CHANGED");
}
}
Map {
// bearing: 90
state: "navigating"// ? "navigating" : ""
id: map
anchors.fill: parent
gesture.enabled: true
plugin: Plugin {
name: "mapboxgl"
PluginParameter {
name: "mapboxgl.mapping.use_fbo"
value: false
}
PluginParameter {
name: "osm.routing.host"
value: "http://router.project-osrm.org/route/v4/driving/"
}
PluginParameter {
name: "osm.mapping.highdpi_tiles"
value: true
}
PluginParameter {
name: "mapboxgl.mapping.additional_style_urls"
value: "mapbox://styles/mapbox/dark-v11"// "mapbox://styles/mapbox/navigation-guidance-night-v3"
}
PluginParameter {
name: "osm.routing.host"
value: "http://router.project-osrm.org/route/v4/driving/"
}
PluginParameter {
name: "osm.routing.apiversion"
value: "v4"
}
}
Plugin {
name: "osm"
}
MapItemView {
model: searchModel
delegate: MapCircle {
center: model.place.location.coordinate
radius: 50
color: "#aa449944"
border.width: 0
}
}
MapItemView {
model: routeModel
delegate: MapRoute {
route: routeData
line.color: "#aa2235fa"
line.width: 5
smooth: true
}
}
MapCircle {
id: currentPosition
center: src.position.coordinate
radius: 50
color: "red"
border.width: 0
}
center: locationSource.coordinate
zoomLevel: 16
copyrightsVisible: false
Component.onCompleted: {
//map.toCoordinate = Qt.point(52.520008, 13.404954)
var params = [
"country-label-lg", "country-label-md", "country-label-sm",
"state-label-lg", "state-label-md", "state-label-sm",
"marine-label-lg-pt", "marine-label-lg-ln", "marine-label-md-pt",
"marine-label-md-ln", "marine-label-sm-pt", "marine-label-sm-ln",
"place-city-lg-n", "place-city-lg-s", "place-city-md-n",
"place-city-md-s", "place-city-sm", "place-island", "place-town",
"place-village", "place-hamlet", "place-suburb",
"place-neighbourhood", "place-islet-archipelago-aboriginal",
"airport-label", "poi-scalerank1", "place-residential",
"water-label", "water-label-sm","poi-scalerank2",
"motorway-junction", "poi-scalerank3", "poi-scalerank4-l1",
"poi-scalerank4-l15", "waterway-label"
]
for (var i = 0; i < map.supportedMapTypes.length; ++i) {
console.log(map.supportedMapTypes[i].name)
// if (map.supportedMapTypes[i].name === "mapbox://styles/mapbox/navigation-preview-night-v2") {
if (map.supportedMapTypes[i].name === "mapbox://styles/mapbox/navigation-night-v1") {
map.activeMapType = map.supportedMapTypes[i]
return
}
}
console.log("CURR MAP: " + map.supportedMapTypes[10].name);
map.activeMapType = map.supportedMapTypes[10];
return;
var lang = settingsManager.language
lang = lang.substr(0, lang.indexOf('_'));
// mapboxgl doesn't support Polish language
if (lang === 'pl') {
lang = 'en'
}
var qml = "import QtLocation 5.12; MapParameter {property var layer; property var textField}"
for (var j = 0; j < params.length; ++j) {
var param = Qt.createQmlObject(qml, map)
param.type = "layout"
param.layer = params[j]
param.textField = ["get", "name_" + lang]
map.addMapParameter(param)
}
for (var i = 0; i < map.supportedMapTypes.length; ++i) {
console.log(map.supportedMapTypes[i])
if (map.supportedMapTypes[i].name === settingsManager.theme.mapStyle) {
map.activeMapType = map.supportedMapTypes[i]
return
}
}
}
MapQuickItem {
id: currentLocation
sourceItem: Rectangle {
width: 40
height: width
//color: settingsManager.theme.locationMarkShadow
smooth: true
radius: width / 2
Rectangle {
anchors.centerIn: parent
width: 20
height: width
//color: settingsManager.theme.locationMarkColor
border.width: 2
//border.color: settingsManager.theme.locationMarkBorder
smooth: true
radius: width / 2
}
}
coordinate: locationSource.coordinate
opacity: 1.0
anchorPoint: Qt.point(sourceItem.width / 2, sourceItem.height / 2)
}
MouseArea {
anchors.fill: parent
propagateComposedEvents: true
}
}
}