@@ -114,7 +114,7 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
114
114
self . isMyLocationButtonShowing = visible
115
115
if visible {
116
116
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
118
118
locationButton. tag = 100
119
119
locationButton. layer. cornerRadius = 5
120
120
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 {
191
191
var nearestPoly : FlutterPolyline ? = nil
192
192
for overlay : MKOverlay in self . overlays {
193
193
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 ) )
195
195
if distance < nearestDistance {
196
196
nearestDistance = distance
197
197
nearestPoly = ( overlay as! FlutterPolyline )
@@ -246,10 +246,10 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
246
246
ptClosest = ptB
247
247
}
248
248
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)
250
250
}
251
251
252
- distance = min ( distance, MKMetersBetweenMapPoints ( ptClosest, pt) )
252
+ distance = min ( distance, ptClosest. distance ( to : pt) )
253
253
}
254
254
return distance
255
255
}
@@ -258,6 +258,6 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
258
258
let ptB = CGPoint ( x: pt. x + CGFloat( px) , y: pt. y)
259
259
let coordA : CLLocationCoordinate2D = self . convert ( pt, toCoordinateFrom: self )
260
260
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) )
262
262
}
263
263
}
0 commit comments