2016-11-29 66 views
3

在我的应用程序中使用位置字符串进行搜索时,它将返回5结果,但与默认设备映射应用程序不匹配。Apple CLGeocoder,MKLocalSearch结果与设备映射结果不同

我的代码1:CLGeocoder

CLGeocoder *geocoder = [[CLGeocoder alloc] init]; 
[geocoder geocodeAddressString:searchKey completionHandler:^(NSArray* placemarks, NSError* error){ 
    dispatch_async(dispatch_get_main_queue(), ^{ 
     if (placemarks.count > 0) { 
      searchLocations = placemarks; 
     } else { 
      searchLocations = nil; 
     } 
     [searchTableView reloadData]; 

     for (CLPlacemark *placemark in placemarks) { 
      NSLog(@"place dic %@",placemark.addressDictionary); 
     } 
    }); 
}]; 

代码2:MKLocalSearch

CLLocation *userLoc = (CLLocation *)[[MYLocationManager defaultManager] currentLocation]; 
MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init]; 
request.region = MKCoordinateRegionMakeWithDistance(userLoc.coordinate, 100000, 100000); 
request.naturalLanguageQuery = searchKey; 
MKLocalSearch *search = [[MKLocalSearch alloc] initWithRequest:request]; 
[search startWithCompletionHandler:^(MKLocalSearchResponse * _Nullable response, NSError * _Nullable error) { 
    NSMutableArray *locs = [[NSMutableArray alloc]init]; 
    for (MKMapItem *placeM in response.mapItems) { 
     [locs addObject:placeM.placemark]; 
    } 
    if (locs.count > 0) { 
     searchLocations = locs; 
    } else { 
     searchLocations = nil; 
    } 


    dispatch_async(dispatch_get_main_queue(), ^{ 
    [searchTableView reloadData]; 
    }); 
}]; 

两者都返回相同的结果 CLGeocoder result

设备地图应用程序中的结果:

DEvice map result

设备映射结果与编码地理结果不同。请帮忙解决这个问题。 和我的问题是什么类型的搜索方法使用默认地图应用程序? 以及如何在编码中获得相同的结果?

回答

0

请参考this的答案。它描述了复制上述结果所需的所有步骤。我已经在模拟器上测试过了。