Hi
I'm using Xcode 7 Beta 5 and just trying to show a basic mapview on the main interface of the watch in WatchOS2 with the following code but when it eventually loads and displays the screen the map is always blank.
As you can see, nothing fancy going on here lol
override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)
/
let location = CLLocationCoordinate2D(latitude: 51.471571, longitude: -0.454363)
let span = MKCoordinateSpan(latitudeDelta: 0.05, longitudeDelta: 0.05)
let region = MKCoordinateRegion(center: location, span: span)
mapView.setRegion(region)
}
I can't even get the most basic map stuff to work in new version!
Been using mapView loads in WatchOS 1 with no problems but suprised to hit such a fundamental stumbling block beofore i've even got started properly in v2
Anyone else seen this or has anything changed re: map in OS 2
Thanks
Steve