I try to show a location on the map, here is the code:
locationManager = [[CLLocationManager alloc] init];
locationManager.distanceFilter = kCLDistanceFilterNone;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager.location initWithLatitude:latitude longitude: longitude];
NSLog(@"%f", [selectedBuilding.latitude doubleValue]);
[locationManager startUpdatingLocation];
However, no matter what coordinates I provide, the blue dot always locates in California which seems the default behaviour, is there anything additional I need to do? Thanks.