A real newbie to IOS and SWIFT. Trying to overlay a circle over the current location. Following code generates the map view, puts a blue dot at user location but does NOT draw the overlay circle.. please help.
//
// ViewController.swift
// userLocation
//
//
import UIKit
import MapKit
import CoreLocation
class ViewController: UIViewController, CLLocationManagerDelegate, MKMapViewDelegate {
//Map outlet
@IBOutlet weak var map: MKMapView!
@IBOutlet weak var zoomFactorStepper: UIStepper!
let manager = CLLocationManager()
var zoomFactor = 0.01
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let location = locations[0]
let span:MKCoordinateSpan = MKCoordinateSpan(latitudeDelta: zoomFactor, longitudeDelta: zoomFactor)
let myLocation:CLLocationCoordinate2D = CLLocationCoordinate2DMake(location.coordinate.latitude, location.coordinate.longitude)
let region:MKCoordinateRegion = MKCoordinateRegion(center: myLocation, span: span)
map.setRegion(region, animated: true)
self.map.showsUserLocation = true
map.removeOverlays(map.overlays)
let circle = MKCircle(center: location.coordinate, radius: 100)
map.addOverlay(circle)
}
This function does the main work.
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
manager.delegate = self
manager.desiredAccuracy = kCLLocationAccuracyBest
manager.requestWhenInUseAuthorization()
manager.startUpdatingLocation()
}
@IBAction func zoomFactorStepperAction(_ sender: Any) {
zoomFactor = zoomFactorStepper.value * 0.01
//map.setNeedsDisplay()
}
func map(_ map: MKMapView, rendererFor overlay: MKOverlay) -> MKOverlayRenderer {
guard let circelOverLay = overlay as? MKCircle else {return MKOverlayRenderer()}
let circleRenderer = MKCircleRenderer(circle: circelOverLay)
circleRenderer.strokeColor = .blue
circleRenderer.fillColor = .blue
//circleRenderer.alpha = 0.2
return circleRenderer
}
}
This was missing, once I added this the circle dropped as expected.
map.delegate = self