您可以使用地理编码器
根据这些键制作地址字典 - 城市、街道、国家、邮政编码、州 - 如果你只想要城市制作这样的字典
NSDictionary *addressDictionary = [[NSDictionary alloc]initWithObjectsAndKeys:@"Miami",@"City", nil];
添加 CoreLocation.framework 并导入 #import
使用以下代码查找位置 -
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressDictionary:addressDictionary completionHandler:^(NSArray *placemarks, NSError *error) {
if([placemarks count]) {
CLPlacemark *placemark = [placemarks objectAtIndex:0];
CLLocation *location = placemark.location;
CLLocationCoordinate2D coordinate = location.coordinate;
[self.googleMap animateToLocation:coordinate];