質問編集履歴
2
title
CHANGED
File without changes
|
body
CHANGED
@@ -84,7 +84,6 @@
|
|
84
84
|
|
85
85
|
// 地図のタイプを切り替える
|
86
86
|
@IBAction func changedMapType(_ sender: UISegmentedControl) {
|
87
|
-
getRoute()
|
88
87
|
switch sender.selectedSegmentIndex {
|
89
88
|
case 0 :
|
90
89
|
// 地図
|
@@ -122,6 +121,7 @@
|
|
122
121
|
|
123
122
|
// トラッキングモードを切り替える
|
124
123
|
@IBAction func tapTrackingButton(_ sender: UIBarButtonItem) {
|
124
|
+
getRoute()
|
125
125
|
switch myMap.userTrackingMode {
|
126
126
|
case .none:
|
127
127
|
// noneからfollowへ
|
1
誤字の訂正
title
CHANGED
File without changes
|
body
CHANGED
@@ -65,7 +65,7 @@
|
|
65
65
|
class ViewController: UIViewController,MKMapViewDelegate, CLLocationManagerDelegate {
|
66
66
|
|
67
67
|
// 目的地
|
68
|
-
var destLocation = CLLocationCoordinate2D(latitude: 35.
|
68
|
+
var destLocation = CLLocationCoordinate2D(latitude: 35.658611, longitude: 139.745556)
|
69
69
|
|
70
70
|
// 現在地
|
71
71
|
var userLocation: CLLocationCoordinate2D!
|