以“我的位置”作为起点标签启动Google地图

时间:2014-02-25 12:18:09

标签: ios iphone google-maps

我使用以下代码启动Google Maps,以显示从当前位置到特定位置的分步导航:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"comgooglemaps://?daddr=%f,%f&saddr=%f,%f",destLocation.coordinate.latitude, destLocation.coordinate.longitude,_currentLocation.coordinate.latitude,_currentLocation.coordinate.longitude]];

然而,当Google Maps应用打开时,它会显示例如“Howard Street”作为起点标签,这是正确的,但我怎样才能让Google Maps应用显示“我的位置”标签以街道名称标签为起点?

P.S。如果他/她点击坐标,用户可以显示“我的位置”标签,然后选择“我的位置”作为Google Maps内部的起点,但我希望代表用户完成此行为。

1 个答案:

答案 0 :(得分:0)

来自Google Maps SDK,如果我没有提供源坐标,Google地图会自动将“我的位置”显示为起点标签。