3

我正在尝试使用 MapKit 构建一个简单的应用程序,该应用程序将在应用程序启动时自动搜索特定位置,并在地图上的位置放置图钉。我看到了各种加载位置的方法(纬度/经度等),但没有任何方法可以让我搜索特定的公司名称、餐厅名称等。

我期待与 Apple Maps 合作。但是,如果谷歌地图是一个更好的解决方案,那就这样吧。

任何帮助,将不胜感激。谢谢

4

3 回答 3

6

iOS >= 6.1 提供MKLocalSearchMKLocalSearchRequest来搜索自然语言兴趣点。样本

MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.region = regionToSearchIn;
request.naturalLanguageQuery = @"restaurants"; // or business name
MKLocalSearch *localSearch = [[MKLocalSearch alloc] initWithRequest:request];
[localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error) {
    // do something with the results / error
}];
于 2013-06-05T01:30:31.280 回答
2

我知道它已经晚了,但希望这会有所帮助!

[super viewDidLoad];
[self.searchDisplayController setDelegate:self];
[self.ibSearchBar setDelegate:self];

self.ibMapView.delegate=self;

// Zoom the map to current location.
[self.ibMapView setShowsUserLocation:YES];
[self.ibMapView setUserInteractionEnabled:YES];
[self.ibMapView setUserTrackingMode:MKUserTrackingModeFollow];



CLLocationManager *locationManager = [[CLLocationManager alloc] init];
locationManager.delegate=self;

[locationManager startUpdatingLocation];
[self.ibMapView setRegion:MKCoordinateRegionMake(locationManager.location.coordinate, MKCoordinateSpanMake(0.2, 0.2))];

MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.region = self.ibMapView.region;
request.naturalLanguageQuery = @"restaurant";

[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
localSearch = [[MKLocalSearch alloc] initWithRequest:request];

[localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error){

    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

    results = response;
    if (response.mapItems.count == 0)
        NSLog(@"No Matches");
    else
        for (MKMapItem *item in response.mapItems)
        {
            NSLog(@"name = %@", item.name);
            NSLog(@"Phone = %@", item.phoneNumber);

            [_matchingItems addObject:item];
            MKPointAnnotation *annotation =
            [[MKPointAnnotation alloc]init];
            annotation.coordinate = item.placemark.coordinate;
            annotation.title = item.name;
            [self.ibMapView addAnnotation:annotation];
        }
}];

}

于 2014-05-27T20:26:54.617 回答
0

执行以下步骤以显示最近的地点。

使用 google API 查找最近的地方Google Places API

google API 提供 LAt 和 Long 以及地址信息。

然后将 LAt 和 Long 值存储到数组中,然后使用这个 lat 和 long 值,您可以在 Apple 地图 (iOS 6+) 和 Google 地图 (iOS 5) 中显示注释。

于 2013-06-05T04:17:37.620 回答