Skip to content

Commit f4a5180

Browse files
committedDec 3, 2019
Converted code to swift 5 + bumped version number.
1 parent 35f34f4 commit f4a5180

8 files changed

+23
-19
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.6+2
2+
3+
* Converted iOS code to swift 5.
4+
15
## 0.0.6+1
26

37
* Changed annotation initialisation, fixes custom annotation icons not showing up on the map.

‎example/ios/Runner.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
97C146ED1CF9000F007C117D = {
182182
CreatedOnToolsVersion = 7.3.1;
183183
DevelopmentTeam = PT2UDFM269;
184-
LastSwiftMigration = 0910;
184+
LastSwiftMigration = 1100;
185185
};
186186
};
187187
};
@@ -389,7 +389,7 @@
389389
PRODUCT_BUNDLE_IDENTIFIER = de.luisthein.appleMapsFlutterExample2;
390390
PRODUCT_NAME = "$(TARGET_NAME)";
391391
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
392-
SWIFT_VERSION = 4.0;
392+
SWIFT_VERSION = 5.0;
393393
VERSIONING_SYSTEM = "apple-generic";
394394
};
395395
name = Profile;
@@ -526,7 +526,7 @@
526526
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
527527
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
528528
SWIFT_SWIFT3_OBJC_INFERENCE = On;
529-
SWIFT_VERSION = 4.0;
529+
SWIFT_VERSION = 5.0;
530530
VERSIONING_SYSTEM = "apple-generic";
531531
};
532532
name = Debug;
@@ -555,7 +555,7 @@
555555
PRODUCT_NAME = "$(TARGET_NAME)";
556556
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
557557
SWIFT_SWIFT3_OBJC_INFERENCE = On;
558-
SWIFT_VERSION = 4.0;
558+
SWIFT_VERSION = 5.0;
559559
VERSIONING_SYSTEM = "apple-generic";
560560
};
561561
name = Release;

‎example/ios/Runner/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Flutter
55
@objc class AppDelegate: FlutterAppDelegate {
66
override func application(
77
_ application: UIApplication,
8-
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
8+
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
99
) -> Bool {
1010
GeneratedPluginRegistrant.register(with: self)
1111
return super.application(application, didFinishLaunchingWithOptions: launchOptions)

‎example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packages:
1414
path: ".."
1515
relative: true
1616
source: path
17-
version: "0.0.6+1"
17+
version: "0.0.6+2"
1818
args:
1919
dependency: transitive
2020
description:

‎ios/Classes/FlutterMapView.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
114114
self.isMyLocationButtonShowing = visible
115115
if visible {
116116
let image = UIImage(named: "outline_near_me")
117-
let locationButton = UIButton(type: UIButtonType.custom) as UIButton
117+
let locationButton = UIButton(type: UIButton.ButtonType.custom) as UIButton
118118
locationButton.tag = 100
119119
locationButton.layer.cornerRadius = 5
120120
locationButton.frame = CGRect(origin: CGPoint(x: self.bounds.width - 45, y: self.bounds.height - 45), size: CGSize(width: 40, height: 40))
@@ -191,7 +191,7 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
191191
var nearestPoly: FlutterPolyline? = nil
192192
for overlay: MKOverlay in self.overlays {
193193
if overlay is FlutterPolyline {
194-
let distance: Float = Float(distanceOf(pt: MKMapPointForCoordinate(coord), toPoly: overlay as! MKPolyline))
194+
let distance: Float = Float(distanceOf(pt: MKMapPoint.init(coord), toPoly: overlay as! MKPolyline))
195195
if distance < nearestDistance {
196196
nearestDistance = distance
197197
nearestPoly = (overlay as! FlutterPolyline)
@@ -246,10 +246,10 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
246246
ptClosest = ptB
247247
}
248248
else {
249-
ptClosest = MKMapPointMake(ptA.x + u * xDelta, ptA.y + u * yDelta)
249+
ptClosest = MKMapPoint.init(x: ptA.x + u * xDelta, y: ptA.y + u * yDelta)
250250
}
251251

252-
distance = min(distance, MKMetersBetweenMapPoints(ptClosest, pt))
252+
distance = min(distance, ptClosest.distance(to: pt))
253253
}
254254
return distance
255255
}
@@ -258,6 +258,6 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
258258
let ptB = CGPoint(x: pt.x + CGFloat(px), y: pt.y)
259259
let coordA: CLLocationCoordinate2D = self.convert(pt, toCoordinateFrom: self)
260260
let coordB: CLLocationCoordinate2D = self.convert(ptB, toCoordinateFrom: self)
261-
return MKMetersBetweenMapPoints(MKMapPointForCoordinate(coordA), MKMapPointForCoordinate(coordB))
261+
return MKMapPoint.init(coordA).distance(to: MKMapPoint.init(coordB))
262262
}
263263
}

‎ios/Classes/MapViewExtension.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public extension MKMapView {
139139

140140
// use the zoom level to compute the region
141141
let span = self.coordinateSpanWithMapView(centerCoordinate: centerCoordinate, zoomLevel: Int(zoomL))
142-
let region = MKCoordinateRegionMake(centerCoordinate, span)
142+
let region = MKCoordinateRegion.init(center: centerCoordinate, span: span)
143143

144144
// set the region like normal
145145
self.setRegion(region, animated: animated)
@@ -181,7 +181,7 @@ public extension MKMapView {
181181
let latitudeDelta = -1 * (maxLat - minLat)
182182

183183
// create and return the lat/lng span
184-
return MKCoordinateSpanMake(latitudeDelta, longitudeDelta)
184+
return MKCoordinateSpan.init(latitudeDelta: latitudeDelta, longitudeDelta: longitudeDelta)
185185
}
186186

187187
@available(iOS 9.0, *)
@@ -207,7 +207,7 @@ public extension MKMapView {
207207
let maxLat = pixelSpaceYToLatitude(pixelY: topLeftPixelY + scaledMapHeight)
208208
let topBottom = CLLocationCoordinate2D.init(latitude: maxLat, longitude: centerCoordinate.longitude)
209209

210-
let distance = MKMetersBetweenMapPoints(MKMapPointForCoordinate(centerCoordinate), MKMapPointForCoordinate(topBottom))
210+
let distance = MKMapPoint.init(centerCoordinate).distance(to: MKMapPoint.init(topBottom))
211211
let altitude = distance / tan(.pi*(15/180.0))
212212

213213
return altitude

‎ios/Classes/PolylineController.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class PolylineController {
6262
for _polyline in data {
6363
let polylineData :Dictionary<String, Any> = _polyline as! Dictionary<String, Any>
6464
let polyline = FlutterPolyline(fromDictionaray: polylineData)
65-
mapView.add(polyline)
65+
mapView.addOverlay(polyline)
6666
}
6767
}
6868

@@ -88,15 +88,15 @@ class PolylineController {
8888
for overlay in mapView.overlays {
8989
if let polyline = overlay as? FlutterPolyline {
9090
if polylineIds.contains(polyline.id!) {
91-
mapView.remove(polyline)
91+
mapView.removeOverlay(polyline)
9292
}
9393
}
9494
}
9595
}
9696

9797
private func updatePolylinesOnMap(oldPolyline: FlutterPolyline, newPolyline: FlutterPolyline) {
98-
mapView.remove(oldPolyline)
99-
mapView.add(newPolyline)
98+
mapView.removeOverlay(oldPolyline)
99+
mapView.addOverlay(newPolyline)
100100
}
101101

102102
private func linePatternToArray(patternData: NSArray?, lineWidth: CGFloat?) -> [NSNumber] {

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: apple_maps_flutter
22
description: This plugin uses the Flutter platform view to display an Apple Maps widget.
3-
version: 0.0.6+1
3+
version: 0.0.6+2
44
author: Luis Thein <luis.thein@gmx.de>
55
homepage: https://github.com/LuisThein
66

0 commit comments

Comments
 (0)
Please sign in to comment.