美文网首页
IOS 调用苹果地图

IOS 调用苹果地图

作者: 大强哥 | 来源:发表于2016-03-24 16:03 被阅读276次
    //当前的位置  
    MKMapItem *currentLocation = [MKMapItem mapItemForCurrentLocation];  
    //目的地的位置  
    MKMapItem *toLocation = [[MKMapItem alloc] initWithPlacemark:[[MKPlacemark alloc] initWithCoordinate:_currentLocationCoordinate addressDictionary:nil]];  
      
    toLocation.name = self.addressString;  
      
    NSArray *items = [NSArray arrayWithObjects:currentLocation, toLocation, nil nil];  
    NSDictionary *options = @{ MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeDriving, MKLaunchOptionsMapTypeKey: [NSNumber numberWithInteger:MKMapTypeStandard], MKLaunchOptionsShowsTrafficKey:@YES };  
    //打开苹果自身地图应用,并呈现特定的item  
    [MKMapItem openMapsWithItems:items launchOptions:options];  
    

    相关文章

      网友评论

          本文标题: IOS 调用苹果地图

          本文链接:https://www.haomeiwen.com/subject/qzyrlttx.html