zoukankan      html  css  js  c++  java
  • iOS6地图“查看路线”、导航功能的实现

    在iOS6之前,苹果自带的是Google地图,所以“查看路线”的功能可以通过访问google的url来实现:

    url 格式为:“http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f”

     

    不过iOS6之后,苹果使用了自家地图,以上的方式就只能跳到google 地图网页版,不过体验不太好,

    还是希望调用本地应用,于是找到了官方文档:

    http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/MapLinks.html

     

    照文档描述,iOS6中的调用应该为:

    访问url:“http://maps.apple.com/maps?saddr=%f,%f&daddr=%f,%f”

    不过会提示服务器不可用,估计后面苹果又做更改了。

     

    后来,找到网友的一篇文章,http://autumnice.blog.163.com/blog/static/5552002012912113247614/

    在iOS6中调用地图API的方式可以实现,贴代码如下:

    View Code
    if ([[[UIDevice currentDevice] systemVersion] floatValue] < 6.0) { // ios6以下,调用google map
            NSString *theString = [NSString stringWithFormat:@"http://maps.apple.com/?saddr=%f,%f&daddr=%f,%f",settings.update_latitude,settings.update_longitude, __latitude, __longitude];
            theString =  [theString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
            
            NSURL *url = [[[NSURL alloc] initWithString:theString] autorelease];
            [[UIApplication sharedApplication] openURL:url];
        } else { // 直接调用ios自己带的apple map
            CLLocationCoordinate2D to;
            
            
            to.latitude = __latitude;
            to.longitude = __longitude;
            MKMapItem *currentLocation = [MKMapItem mapItemForCurrentLocation];
            MKMapItem *toLocation = [[MKMapItem alloc] initWithPlacemark:[[[MKPlacemark alloc] initWithCoordinate:to addressDictionary:nil] autorelease]];
            
            toLocation.name = @"Destination";
            [MKMapItem openMapsWithItems:[NSArray arrayWithObjects:currentLocation, toLocation, nil]
                           launchOptions:[NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:MKLaunchOptionsDirectionsModeDriving, [NSNumber numberWithBool:YES], nil]
                                                                     forKeys:[NSArray arrayWithObjects:MKLaunchOptionsDirectionsModeKey, MKLaunchOptionsShowsTrafficKey, nil]]];
            [toLocation release];
        }

    ------------------

    如果不想使用苹果自带的地图的话,也可以使用第三方的地图,如百度;

    百度地图的URI API:http://developer.baidu.com/map/uri-intro.htm#idmykey2

    使用如下:“

    baidumap://map/direction?origin=latlng:34.264642646862,108.95108518068|name:我家&destination=大雁塔&mode=driving&region=西安
    //调起百度PC或Web地图,展示“西安市”从(34.264642646862,108.95108518068 )“我家”到“大雁塔”的驾车路线。

    其他的如高德、搜狗、图吧等没有找到对应的URI API。

    注意调用前,需要判断是否已安装百度地图:

    使用 if ([[UIApplicationsharedApplication] canOpenURL:[NSURLURLWithString:@"baidumap://map/"]]){}

    -------------
    胖叔——zhulin1987.com
  • 相关阅读:
    第四周作业
    jsp第二次作业
    jsp第一次作业
    软件测试1
    activity
    listview
    sql
    登录
    第二次安卓作业
    安卓第一周作业
  • 原文地址:https://www.cnblogs.com/zhulin/p/2761926.html
Copyright © 2011-2022 走看看