我想在地图上显示地图并绘制路线。我的应用程序支持 ios 4 plus。那么我应该如何使用地图在 ios 6 上和以前一样工作。我也想知道我应该在我的应用程序中使用自定义地图视图来显示地图和路线还是应该使用
[[UIApplication sharedApplication] openURL:]
我从来没有用户MapKits
。所以请提供任何教程。也让我知道是否有任何可以使用的 rd 方库。
如果您不想要应用内地图。使用以下内容:
NSString *destinationAddress = @"Amsterdam";
Class itemClass = [MKMapItem class];
if (itemClass && [itemClass respondsToSelector:@selector(openMapsWithItems:launchOptions:)]) {
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressString:destinationAddress completionHandler:^(NSArray *placemarks, NSError *error) {
if([placemarks count] > 0) {
MKPlacemark *placeMark = [[MKPlacemark alloc] initWithPlacemark:[placemarks objectAtIndex:0]];
MKMapItem *mapItem = [[MKMapItem alloc]initWithPlacemark:placeMark];
MKMapItem *mapItem2 = [MKMapItem mapItemForCurrentLocation];
NSArray *mapItems = @[mapItem, mapItem2];
NSDictionary *options = @{
MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeDriving,
MKLaunchOptionsMapTypeKey:
[NSNumber numberWithInteger:MKMapTypeStandard],
MKLaunchOptionsShowsTrafficKey:@YES
};
[MKMapItem openMapsWithItems:mapItems launchOptions:options];
} else {
//error nothing found
}
}];
return;
} else {
NSString *sourceAddress = [LocalizedCurrentLocation currentLocationStringForCurrentLanguage];
NSString *urlToOpen = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%@&daddr=%@",
[sourceAddress stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
[destinationAddress stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlToOpen]];
}
这将打开地图应用程序并检查它是 ios5 还是 ios6。
对于 ios5,我使用LocalizedCurrentLocation
这篇文章中的http://www.martip.net/blog/localized-current-location-string-for-iphone-apps
对于 ios6,我使用 CLGeocoder 获取地标,然后用它和当前位置打开地图。
记得添加CoreLocation.framework
和MapKit.framework
我认为这会帮助你:
http://developer.decarta.com/Apis/IOS/Tutorial/Lesson6
http://developer.decarta.com/Apis/IOS/Tutorial/Lesson6Example
或这个?
http://spitzkoff.com/craig/?p=136
如果您想要地图中的数据,也许这样做很有趣:
http://www.raywenderlich.com/21365/introduction-to-mapkit-in-ios-6-tutorial
或者一些关于 Mapkit 的基本信息