我对iOS MapView
完全不熟悉,我刚刚创建了mapview
和uisearchbar
outlet ,如果我在搜索栏中输入一个单词, PIN显示了我使用的确切位置,
- (void) searchBarSearchButtonClicked:(UISearchBar *)theSearchBar
{
NSMutableString *urlString = [NSMutableString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@?output=json",inAddress];
[urlString setString:[urlString stringByReplacingOccurrencesOfString:@" " withString:@"+"]];
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
}
最后缩放我的地图的功能,现在应该是一件微不足道的事情。
- (void) zoomMapAndCenterAtLatitude:(double) latitude andLongitude:(double) longitude
{
MKCoordinateRegion region;
region.center.latitude = latitude;
region.center.longitude = longitude;
MKCoordinateSpan span;
span.latitudeDelta = .005;
span.longitudeDelta = .005;
region.span = span;
[mapView setRegion:region animated:YES];
}
但如果多个地方与搜索栏关键字匹配,则必须显示多个 PIN 。 示例:如果我在华盛顿键入 HOSPITALS ,则必须显示华盛顿附近的医院 这可能吗?请帮帮我。
答案 0 :(得分:1)
你在地图上添加pin / annotation在哪里? 您可以使用addAnnotations:MKMapView方法在地图视图上添加多个注释。