aboutsummaryrefslogtreecommitdiffstats
path: root/mominavi.qml
blob: c9bd6e9bebbebf6d848516122a779d9fd45aab90 (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
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Copyright (C) 2021 AISIN CORPORATION
** Contact: https://www.qt.io/licensing/
**
** SPDX-License-Identifier: BSD-3-Clause-Clear
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
**   * Redistributions of source code must retain the above copyright
**     notice, this list of conditions and the following disclaimer.
**   * Redistributions in binary form must reproduce the above copyright
**     notice, this list of conditions and the following disclaimer in
**     the documentation and/or other materials provided with the
**     distribution.
**   * Neither the name of The Qt Company Ltd nor the names of its
**     contributors may be used to endorse or promote products derived
**     from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.12
import QtQuick.Layouts 1.12
import QtQuick.Controls 2.12
import QtLocation 5.9
import QtPositioning 5.6


ApplicationWindow {
    id: root
	visible: true
    width: 1920
    height: 1080
    title: qsTr("mominavi")

    property real car_position_lat: 36.129
	property real car_position_lon: -115.1533
	property real car_direction: 0  //North
	property real car_driving_speed: 60  // set Km/h
	property bool st_heading_up: false
    property real default_zoom_level : 18
	property real default_car_direction : 180
	property real car_accumulated_distance : 0
	property real positionTimer_interval : 100
	property real car_moving_distance : (car_driving_speed / 3.6) / (1000/positionTimer_interval) // Metric unit
	property string mapbox_access_token : ""
	property string mapbox_style_urls : "mapbox://styles/wata2ki/ckrumy7l44w3e17qlohjtv1p8"
	property string mapbox_cache_dir : "/var/cache/momimap"

	Map{
		id: map
		property int pathcounter : 0
		property int segmentcounter : 0
		property int waypoint_count: -1
		property int lastX : -1
		property int lastY : -1
		property int pressX : -1
		property int pressY : -1
		property int jitterThreshold : 30
		property variant currentpostion : QtPositioning.coordinate(car_position_lat, car_position_lon)
		property int last_segmentcounter : -1
        property string latestRouteText : ""

		signal qmlSignalRouteInfo(double srt_lat,double srt_lon,double end_lat,double end_lon);
		signal qmlSignalPosInfo(double lat,double lon,double drc,double dst);
		signal qmlSignalStopDemo();
		signal qmlSignalArrvied();
		signal qmlCheckDirection(double cur_dir,double next_dir,double is_rot);

		width: parent.width
		height: parent.height
		plugin: Plugin {
			name: "mapboxgl"
			PluginParameter { name: "mapboxgl.access_token"; value: mapbox_access_token }
			PluginParameter { name: "mapboxgl.mapping.additional_style_urls"; value: mapbox_style_urls }
			PluginParameter { name: "mapboxgl.mapping.cache.directory"; value: mapbox_cache_dir }
		}
		center: QtPositioning.coordinate(car_position_lat, car_position_lon)
		zoomLevel: default_zoom_level
		bearing: 0
		objectName: "map"

		GeocodeModel {
			id: geocodeModel
			plugin: map.plugin
			onStatusChanged: {
				if ((status == GeocodeModel.Ready) || (status == GeocodeModel.Error))
					map.geocodeFinished()
			}
			onLocationsChanged:
			{
				if (count == 1) {
					map.center.latitude = get(0).coordinate.latitude
					map.center.longitude = get(0).coordinate.longitude
				}
			}
		}
		MapItemView {
			model: geocodeModel
			delegate: pointDelegate
		}
		Component {
			id: pointDelegate

			MapCircle {
				id: point
				radius: 1000
				color: "#46a2da"
				border.color: "#190a33"
				border.width: 2
				smooth: true
				opacity: 0.25
				center: locationData.coordinate
			}
		}

		function geocode(fromAddress)
		{
			// send the geocode request
			geocodeModel.query = fromAddress
			geocodeModel.update()
		}
		
		MapQuickItem {
			id: poi
			sourceItem: Rectangle { width: 14; height: 14; color: "#e41e25"; border.width: 2; border.color: "white"; smooth: true; radius: 7 }
			coordinate {
				latitude: 36.136261
				longitude: -115.151254
			}
			opacity: 1.0
			anchorPoint: Qt.point(sourceItem.width/2, sourceItem.height/2)
		}
		MapQuickItem {
			sourceItem: Text{
				text: "Westgate"
				color:"#242424"
				font.bold: true
				styleColor: "#ECECEC"
				style: Text.Outline
			}
			coordinate: poi.coordinate
			z:11
			anchorPoint: Qt.point(-poi.sourceItem.width * 0.5, poi.sourceItem.height * 1.5)
		}
		MapQuickItem {
			id: car_position_mapitem
			property int isRotating: 0
			sourceItem: Image {
				id: car_position_mapitem_image
				width: 48
				height: 48
				source: "images/position02.svg"

				transform: Rotation {
					id: car_position_mapitem_image_rotate
					origin.x: car_position_mapitem_image.width/2
					origin.y: car_position_mapitem_image.height/2
					angle: car_direction
				}
			}
			anchorPoint: Qt.point(car_position_mapitem_image.width/2, car_position_mapitem_image.height/2)
			coordinate: map.currentpostion
			z:12
			states: [
				State {
					name: "HeadingUp"
					PropertyChanges { target: car_position_mapitem_image_rotate; angle: 0 }
				},
				State {
					name: "NorthUp"
					PropertyChanges { target: car_position_mapitem_image_rotate; angle: root.car_direction }
				}
			]
			transitions: Transition {
				RotationAnimation {
					properties: "angle";
					easing.type: Easing.InOutQuad;
					direction: RotationAnimation.Shortest;
					duration: 200
				}
			}
		}

		MapQuickItem {
			id: icon_start_point
			anchorPoint.x: icon_start_point_image.width/2
            anchorPoint.y: icon_start_point_image.height/2
			z:11
			sourceItem: Image {
				id: icon_start_point_image
				width: 25
				height: 25
                source: "images/08_START.png"
			}
		}

		MapQuickItem {
			id: icon_end_point
			anchorPoint.x: icon_end_point_image.width/2
            anchorPoint.y: icon_end_point_image.height/2
			z:11
			sourceItem: Image {
				id: icon_end_point_image
				width: 35
				height: 35
                source: "images/10_GOAL.png"
            }
		}

		MapQuickItem {
			id: icon_segment_point
            anchorPoint.x: icon_segment_point_image.width/2
            anchorPoint.y: icon_segment_point_image.height/2
			z:11
			sourceItem: Image {
				id: icon_segment_point_image
                width: 25
                height: 25
                source: "images/09_JUNCTION.png"
			}
		}

		RouteModel {
			id: routeModel
			objectName: "routeModel"
			plugin : Plugin {
				name: "mapbox"
				PluginParameter { name: "mapbox.access_token";
					value: mapbox_access_token
				}
			}
			query:  RouteQuery {
				id: routeQuery
			}
			onStatusChanged: {
				if (status == RouteModel.Ready) {
					switch (count) {
					case 0:
						// technically not an error
					//	map.routeError()
						break
					case 1:
						map.pathcounter = 0
						map.segmentcounter = 0
						break
					}
				} else if (status == RouteModel.Error) {
				//	map.routeError()
				}
			}
		}
		
		Component {
			id: routeDelegate

			MapRoute {
				id: route
				route: routeData
				line.color: "#00DEE7"
				line.width: 10
				z:5
				smooth: true
				opacity: 0.8
			}
		}
		
		MapItemView {
			model: routeModel
			delegate: routeDelegate
		}

		Component {
			id: mapcomponent
			MapQuickItem {
				id: icon_destination_point
				anchorPoint.x: icon_destination_point_image.width/4
				anchorPoint.y: icon_destination_point_image.height
				z:20
				coordinate: position

				sourceItem: Image {
					id: icon_destination_point_image
					width: 32
					height: 32
                    source: "images/200px-Black_close_x.svg.png"
                }
			}
		}

		function addDestination(coord){
			if( waypoint_count < 0 ){
				initDestination()
			}

			if(waypoint_count == 0)  {
				// set icon_start_point
				icon_start_point.coordinate = currentpostion
				map.addMapItem(icon_start_point)
			}

			if(waypoint_count < 9){
				routeQuery.addWaypoint(coord)
				waypoint_count += 1

				btn_guidance.sts_guide = 1
				btn_guidance.state = "Routing"

				routeModel.update()
				map.qmlSignalRouteInfo(car_position_lat, car_position_lon,coord.latitude,coord.longitude)

				// update icon_end_point
				icon_end_point.coordinate = coord
				map.addMapItem(icon_end_point)
			}
		}

		function initDestination(startFromCurrentPosition){
			if (startFromCurrentPosition === undefined) startFromCurrentPosition = false
			routeModel.reset();
			//console.log("initWaypoint")

			// reset currentpostion
			map.currentpostion = QtPositioning.coordinate(car_position_lat, car_position_lon)
			car_accumulated_distance = 0
			map.qmlSignalPosInfo(car_position_lat, car_position_lon,car_direction,car_accumulated_distance)

			routeQuery.clearWaypoints();
			routeQuery.addWaypoint(map.currentpostion)
			routeQuery.travelModes = RouteQuery.CarTravel
			routeQuery.routeOptimizations = RouteQuery.FastestRoute
			for (var i=0; i<9; i++) {
				routeQuery.setFeatureWeight(i, 0)
			}
			waypoint_count = 0
			pathcounter = 0
			segmentcounter = 0
			routeModel.update();

			// remove MapItem
			map.removeMapItem(icon_start_point)
			map.removeMapItem(icon_end_point)
			map.removeMapItem(icon_segment_point)

			// update car_position_mapitem angle
			root.car_direction = root.default_car_direction

		}

		function calculateMarkerRoute()
		{
			var startCoordinate = QtPositioning.coordinate(car_position_lat, car_position_lon)

            //console.log("calculateMarkerRoute")
			routeQuery.clearWaypoints();
			routeQuery.addWaypoint(startCoordinate)
			routeQuery.addWaypoint(mouseArea.lastCoordinate)
			routeQuery.travelModes = RouteQuery.CarTravel
			routeQuery.routeOptimizations = RouteQuery.FastestRoute
			for (var i=0; i<9; i++) {
				routeQuery.setFeatureWeight(i, 0)
			}
			routeModel.update();
		}

		// Calculate direction from latitude and longitude between two points
		function calculateDirection(lat1, lon1, lat2, lon2) {
			var curlat = lat1 * Math.PI / 180;
			var curlon = lon1 * Math.PI / 180;
			var taglat = lat2 * Math.PI / 180;
			var taglon = lon2 * Math.PI / 180;

			var Y  = Math.sin(taglon - curlon);
			var X  = Math.cos(curlat) * Math.tan(taglat) - Math.sin(curlat) * Math.cos(Y);
			var direction = 180 * Math.atan2(Y,X) / Math.PI;
			if (direction < 0) {
			  direction = direction + 360;
			}
			return direction;
		}

		// Calculate distance from latitude and longitude between two points
		function calculateDistance(lat1, lon1, lat2, lon2)
		{
			var radLat1 = lat1 * Math.PI / 180;
			var radLon1 = lon1 * Math.PI / 180;
			var radLat2 = lat2 * Math.PI / 180;
			var radLon2 = lon2 * Math.PI / 180;

			var r = 6378137.0;

			var averageLat = (radLat1 - radLat2) / 2;
			var averageLon = (radLon1 - radLon2) / 2;
			var result = r * 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(averageLat), 2) + Math.cos(radLat1) * Math.cos(radLat2) * Math.pow(Math.sin(averageLon), 2)));
			return Math.round(result);
		}

		// Setting the next car position from the direction and demonstration mileage
		function setNextCoordinate(curlat,curlon,direction,distance)
		{
			var radian = direction * Math.PI / 180
			var lat_per_meter = 111319.49079327358;
			var lat_distance = distance * Math.cos(radian);
			var addlat = lat_distance / lat_per_meter
			var lon_distance = distance * Math.sin(radian)
			var lon_per_meter = (Math.cos( (curlat+addlat) / 180 * Math.PI) * 2 * Math.PI * 6378137) / 360;
			var addlon = lon_distance / lon_per_meter
			map.currentpostion = QtPositioning.coordinate(curlat+addlat, curlon+addlon);
		}

		MouseArea {
			id: mouseArea
			property variant lastCoordinate
			anchors.fill: parent
			acceptedButtons: Qt.LeftButton | Qt.RightButton
			
			onPressed : {
				map.lastX = mouse.x
				map.lastY = mouse.y
				map.pressX = mouse.x
				map.pressY = mouse.y
				lastCoordinate = map.toCoordinate(Qt.point(mouse.x, mouse.y))
			}
			
			onPositionChanged: {
				if (mouse.button === Qt.LeftButton) {
					map.lastX = mouse.x
					map.lastY = mouse.y
				}
			}
			
			onPressAndHold:{
				if((btn_guidance.state !== "onGuide") && (btn_guidance.state !== "Routing"))
				{
					if (Math.abs(map.pressX - mouse.x ) < map.jitterThreshold
							&& Math.abs(map.pressY - mouse.y ) < map.jitterThreshold) {
						map.addDestination(lastCoordinate)
					}
				}

			}
		}
		gesture.onFlickStarted: {
			btn_present_position.state = "Optional"
		}
		gesture.onPanStarted: {
			btn_present_position.state = "Optional"
		}
		function updatePositon()
		{
			if(pathcounter <= routeModel.get(0).path.length - 1){

                // calculate distance
				var next_distance = calculateDistance(map.currentpostion.latitude,
													  map.currentpostion.longitude,
													  routeModel.get(0).path[pathcounter].latitude,
													  routeModel.get(0).path[pathcounter].longitude);

				// calculate direction
				var next_direction = calculateDirection(map.currentpostion.latitude,
														map.currentpostion.longitude,
														routeModel.get(0).path[pathcounter].latitude,
														routeModel.get(0).path[pathcounter].longitude);

				// calculate next cross distance
				var next_cross_distance = calculateDistance(map.currentpostion.latitude,
															map.currentpostion.longitude,
															routeModel.get(0).segments[segmentcounter].path[0].latitude,
															routeModel.get(0).segments[segmentcounter].path[0].longitude);

				// map rotateAnimation cntrol
				if(root.st_heading_up) {
					var is_rotating = 0;
					var cur_direction = Math.floor(map.bearing);

					// check is_rorating
					if(cur_direction > Math.floor(next_direction)){
						is_rotating = Math.floor(cur_direction - next_direction);
					}else{
						is_rotating = Math.floor(next_direction - cur_direction);
					}

					if(is_rotating > 180){
						is_rotating = 360 - is_rotating;
					}

					// rotation angle case
					if(is_rotating > 180){
						// driving stop hard turn
						root.car_moving_distance = 0;
						rot_anim.duration = 1600;
						rot_anim.easing.type = Easing.OutQuint;
					} else if(is_rotating > 90){
						// driving stop normal turn
						root.car_moving_distance = 0;
						rot_anim.duration = 800;
						rot_anim.easing.type = Easing.OutQuart;
					} else if(is_rotating > 60){
						// driving slow speed normal turn
						root.car_moving_distance = ((car_driving_speed / 3.6) / (1000/positionTimer_interval)) * 0.3;
						rot_anim.duration = 400;
						rot_anim.easing.type = Easing.OutCubic;
					} else if(is_rotating > 30){
						// driving half speed soft turn
						root.car_moving_distance = ((car_driving_speed / 3.6) / (1000/positionTimer_interval)) * 0.5;
						rot_anim.duration = 300;
						rot_anim.easing.type = Easing.OutQuad;
					} else {
						// driving nomal speed soft turn
						root.car_moving_distance = (car_driving_speed / 3.6) / (1000/positionTimer_interval);
						rot_anim.duration = 200;
						rot_anim.easing.type = Easing.OutQuad;
					}
				}else{
					// NorthUp
					root.car_moving_distance = (car_driving_speed / 3.6) / (1000/positionTimer_interval);
					rot_anim.duration = 200;
					rot_anim.easing.type = Easing.OutQuad;
				}

				root.car_direction = next_direction;

				// set next coordidnate
				if(next_distance < (root.car_moving_distance * 1.5))
				{
					map.currentpostion = routeModel.get(0).path[pathcounter]
					car_accumulated_distance += next_distance
					map.qmlSignalPosInfo(map.currentpostion.latitude, map.currentpostion.longitude,next_direction,car_accumulated_distance)
					if(pathcounter < routeModel.get(0).path.length - 1){
						pathcounter++
					}
					else
					{
						// Arrive at your destination
						btn_guidance.sts_guide = 0
						map.qmlSignalArrvied()
					}
				}else{
					setNextCoordinate(map.currentpostion.latitude, map.currentpostion.longitude,next_direction,root.car_moving_distance)
					if(pathcounter != 0){
						car_accumulated_distance += root.car_moving_distance
					}
					map.qmlSignalPosInfo(map.currentpostion.latitude, map.currentpostion.longitude,next_direction,car_accumulated_distance)
				}

				if(btn_present_position.state === "Flowing")
				{
					// update map.center
					map.center = map.currentpostion
				}
				rotateMapSmooth()

				// report a new instruction if current position matches with the head position of the segment
				if(segmentcounter <= routeModel.get(0).segments.length - 1){
					 if(next_cross_distance < 2){
						progress_next_cross.setProgress(0)
						if(segmentcounter < routeModel.get(0).segments.length - 1){
                            var routeElement = routeModel.get(0).segments[segmentcounter]
                            var routeText = routeElement.maneuver.instructionText
                            //console.debug(routeText)
                            routeView.setText(routeText)
                            segmentcounter++
						}
						if(segmentcounter === routeModel.get(0).segments.length - 1){
                            //img_destination_direction.state = "12"
							map.removeMapItem(icon_segment_point)
						}else{
                            //img_destination_direction.state = routeModel.get(0).segments[segmentcounter].maneuver.direction
							icon_segment_point.coordinate = routeModel.get(0).segments[segmentcounter].path[0]
							map.addMapItem(icon_segment_point)
						}
					}else{
						if(next_cross_distance <= 330 && last_segmentcounter != segmentcounter) {
							last_segmentcounter = segmentcounter
							//nop
						}
						// update progress_next_cross
						progress_next_cross.setProgress(next_cross_distance)
					}
				}
			}
		}

		function doGetRouteInfoSlot(){
			if(btn_guidance.sts_guide == 0){ // idle
				map.qmlSignalPosInfo(car_position_lat, car_position_lon,car_direction,car_accumulated_distance);
			}else if(btn_guidance.sts_guide == 1){ // Routing
				map.qmlSignalPosInfo(car_position_lat, car_position_lon,car_direction,car_accumulated_distance);
				map.qmlSignalRouteInfo(car_position_lat, car_position_lon,routeQuery.waypoints[1].latitude,routeQuery.waypoints[1].longitude);
			}else if(btn_guidance.sts_guide == 2){ // onGuide
				map.qmlSignalRouteInfo(car_position_lat, car_position_lon,routeQuery.waypoints[1].latitude,routeQuery.waypoints[1].longitude);
			}
		}

		function rotateMapSmooth(){
			if(root.st_heading_up){
				map.state = "none"
				map.state = "smooth_rotate"
			}else{
				map.state = "smooth_rotate_north"
			}
		}

		function stopMapRotation(){
			map.state = "none"
			rot_anim.stop()
		}

		function doPauseSimulationSlot(){
            btn_guidance.discardWaypoints();
		}

		function doGetAllRoutesSlot(){
			return routeModel.count;
		}

		function doSetWaypointsSlot(latitude,longitue,startFromCurrentPosition){

			if(btn_guidance.state !== "idle")
				btn_guidance.discardWaypoints(startFromCurrentPosition);

			if(btn_present_position.state === "Optional"){
				map.center = map.currentpostion
				btn_present_position.state = "Flowing"
			}

			if((btn_guidance.state !== "onGuide") && (btn_guidance.state !== "Routing"))
				map.addDestination(QtPositioning.coordinate(latitude,longitue))
		}

		states: [
			State {
				name: "none"
			},
			State {
				name: "smooth_rotate"
				PropertyChanges { target: map; bearing: root.car_direction }
			},
			State {
				name: "smooth_rotate_north"
				PropertyChanges { target: map; bearing: 0 }
			}
		]

		transitions: Transition {
			NumberAnimation { properties: "center"; easing.type: Easing.InOutQuad }
			RotationAnimation {
				id: rot_anim
				property: "bearing"
				direction: RotationAnimation.Shortest
				easing.type: Easing.OutQuad
				duration: 200
			}
		}
	}
		
	BtnPresentPosition {
		id: btn_present_position
		anchors.right: parent.right
		anchors.rightMargin: 153
		anchors.bottom: parent.bottom
		anchors.bottomMargin: 162
	}

	BtnMapDirection {
		id: btn_map_direction
		anchors.top: parent.top
		anchors.topMargin: 138
		anchors.left: parent.left
		anchors.leftMargin: 47
	}

	BtnGuidance {
		id: btn_guidance
		anchors.top: parent.top
		anchors.topMargin: 138
		anchors.right: parent.right
		anchors.rightMargin: 153
	}

	BtnShrink {
		id: btn_shrink
		anchors.left: parent.left
		anchors.leftMargin: 47
		anchors.bottom: parent.bottom
		anchors.bottomMargin: 291
	}

	BtnEnlarge {
		id: btn_enlarge
		anchors.left: parent.left
		anchors.leftMargin: 47
		anchors.bottom: parent.bottom
		anchors.bottomMargin: 162
	}

    RouteView {
        id: routeView
        anchors.top: parent.top
        anchors.topMargin: 148
        anchors.left: parent.left
        anchors.leftMargin: 500
    }

    ProgressNextCross {
        id: progress_next_cross
        anchors.top: parent.top
        anchors.topMargin: 210
        anchors.left: routeView.left
        anchors.leftMargin: 0
    }
}