首页 > 代码库 > iOS App通過URL調用谷歌地圖導航
iOS App通過URL調用谷歌地圖導航
1、給iPhone安裝google map app,因為之後會使用這個程序進行導航
2、在自己的App中需要進行導航的地方,加入下列代碼
if ([[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString:@"comgooglemaps://"]]) { [[UIApplication sharedApplication] openURL: [NSURL URLWithString:@"comgooglemaps://?center=40.765819,-73.975866&zoom=14&views=traffic"]];} else { NSLog(@"Can‘t use comgooglemaps://");}
這裏的if主要就是判斷手機中是否有google map app.如果有就將url參數傳入google mao app.
舉例:
comgooglemaps://?center=46.414382,10.013988&mapmode=streetview
以center=46.414382,10.013988為中心點顯示地圖
3、導航的參數
實現導航功能的URL會有三個參數,saddr,daddr,directionsmode,以下是google官方提供的介紹。
saddr
: Sets the starting point for directions searches. This can be a latitude,longitude or a query formatted address. If it is a query string that returns more than one result, the first result will be selected. If the value is left blank, then the user’s current location will be used.daddr
: Sets the end point for directions searches. Has the same format and behavior assaddr
.directionsmode
: Method of transportation. Can be set to:driving
,transit
,bicycling
orwalking
.
下面以例子來介紹該如何使用
1、官方例子,直接進行兩個點的導航
comgooglemaps://?saddr=Google+Inc,+8th+Avenue,+New+York,+NY&daddr=John+F.+Kennedy+International+Airport,+Van+Wyck+Expressway,+Jamaica,+New+York&directionsmode=transit
2、通過經緯度實現兩個點的導航
url = [NSString stringWithFormat:@"comgooglemaps://?saddr=37.782652,-122.410126&daddr=%lf,%lf&directionsmode=driving", targetLocation.latitude, targetLocation.longitude];
3、以手機所在位置為起始點進行導航
url = [NSString stringWithFormat:@"comgooglemaps://?daddr=%lf,%lf&directionsmode=driving", targetLocation.latitude, targetLocation.longitude];
iOS App通過URL調用谷歌地圖導航
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。