ios開發調起第三方地圖

最近公司的APP需要調起第三方地圖所以就研究了一下,看了一下地圖的URL API就搞起來。
想要調起第三方就得設置白名單和微信差不多

LSApplicationQueriesSchemes
    
        baidumap
        iosamap
        comgooglemaps
        qqmap
    

解釋一下
百度地图 URL Scheme: baidumap //文檔地址
http://lbsyun.baidu.com/index.php?title=uri/api/ios

高德地图 URL Scheme: iosamap //文檔地址
http://lbs.amap.com/api/uri-api/guide/travel/route

谷歌地图 URL Scheme:comgooglemaps //文檔地址
http://lbsyun.baidu.com/index.php?title=uri/api/ios

腾讯地图 URL Scheme:qqmap //文檔地址
http://lbs.qq.com/uri_v1/guide-route.html

2、導入framework

MapKit.framework,CoreLocation.framework

可以參考:http://www.jianshu.com/p/e4039b5a1a43
http://blog.csdn.net/a416863220/article/details/51220739

你可能感兴趣的:(ios開發調起第三方地圖)