我正在编写一个 iOS 应用程序,它会根据用户操作在 map 中显示位置。我想放置一个带有描述的图钉并放大以显示 map 详细信息。
如果我使用 URL http://maps.google.com/maps?q=-33.895851,151.18483+(Some+Description)&z=19 调用 Maps我得到一个带有“一些描述”的图钉,但缩放级别被忽略了。这确实适用于 Google map 网站。
如果我使用 http://maps.google.com/maps?q=-33.895851,151.18483&z=19缩放有效,但我没有得到别针。
我尝试了几种 ?q= 、?ll= 和 ?sll= 的组合,但到目前为止,没有任何效果更改缩放和显示描述。
有什么线索吗?
只是为了让我们真的清楚,这里有一些屏幕截图。我希望它可以在真实设备上运行(即使用 iOS map )。模拟器通过 Safari 使用谷歌地图。
这是我看到的 URL 1 ([[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://maps.google.com/maps?q=-33.895851,151.18483+(Some+Description )&z=19"]]; )
这是 URL 2 ([[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://maps.google.com/maps?q=-33.895851,151.18483&z=19"]]; ):
这是 relikd 的建议 ([[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://maps.google.com/maps?z=19&q=-33.895851,151.18483+(Some+Description) "]]; ):
我想要我在屏幕截图 2 中看到的图像,但带有图钉和描述。
感谢 phix23,看起来 &z= 总是被忽略,我很幸运,我的 &z=19 示例恰好放大了很多。所以,我换个说法:如何“鼓励”iOS map 放大?
Best Answer-推荐答案 strong>
似乎不受支持。在 Apple 文档中,它指出:
q= The query parameter. This parameter is treated as if it had been
typed into the query box by the user on the maps.google.com page. q=*
is not supported
按照这一系列逻辑,您无法在搜索输入中指定缩放,因此无法使用“q=”查询字符串参数。
http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/MapLinks.html
关于iphone - 在 iOS map URL 中提供 lat/long AND 标题似乎会导致缩放级别被忽略,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11271979/
|