我正在尝试使用 Apple Maps 在 URL 中设置地图类型,但它似乎不起作用。我能做些什么不同的事情?我通过&t=satellite
在 URL 中指定类型来做到这一点,如下所示:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://maps.apple.com/?daddr=San+Francisco,+CA&saddr=%@,%@&t=satellite", LatitudeCurrentLocation, LongitudeCurrentLocation]]];
纬度和经度是包含纬度和经度坐标的 NSStrings。
如何在 URL 中设置可能类型?