作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用谷歌地图获取方向。我正在关注此链接 https://developers.google.com/maps/documentation/ios-sdk/urlscheme?hl=en
和代码:
if ([[UIApplication sharedApplication] canOpenURL:
[NSURL URLWithString:@"comgooglemaps://"]]) {
NSString *temp=@"comgooglemaps://?saddr=Google+Inc,+8th+Avenue,+New+York,+NY&daddr=John+F.+Kennedy+International+Airport,+Van+Wyck+Expressway,+Jamaica,+New+York&directionsmode=transit";
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:temp]];
} else {
NSLog(@"Can't use comgooglemaps://");
}
map 没有打开,我得到:
Installation[2918:1295695] -canOpenURL: failed for URL: "comgooglemaps://" - error: "(null)"
问题是什么?我错过了什么吗?
我想在我的应用程序中显示谷歌地图。
最佳答案
In iOS 9 you must whitelist any URL schemes your App wants to query in Info.plist under the LSApplicationQueriesSchemes key (an array of strings):
引自此处http://useyourloaf.com/blog/querying-url-schemes-with-canopenurl.html
关于ios - 带有 URL Scheme 的谷歌地图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33821692/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!