gpt4 book ai didi

ios - 用浮点变量替换谷歌地图 API 参数值

转载 作者:行者123 更新时间:2023-11-29 05:04:05 26 4
gpt4 key购买 nike

谷歌地图 API 需要这样的参数:

NSString *urlString=@"http://maps.google.com/maps?saddr=43.2923,5.45427&daddr=43.4697,5.65427";
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:urlString]];

在该示例中,我直接给出了经度/纬度值,但是当我尝试将其作为这样的变量时:

     float latStation=topStation.sstationLatitude;
float longStation=topStation.sstationLongitude;
NSString *urlString=@"http://maps.google.com/maps?saddr=43.2923,5.45427&daddr=latStation,longStation";
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:urlString]];

这不起作用,我该怎么办,提前谢谢:)

最佳答案

您可以像这样使用stringWithFormat::

NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=43.2923,5.45427&daddr=%f,%f",latStation,longStation];

您可能想看看 String Programming Guide .

关于ios - 用浮点变量替换谷歌地图 API 参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6064406/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com