我正在尝试使用Google地图API与
script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"
但是当我在黑莓10中运行我的应用程序时,我收到此错误:
Access to "http://maps.google.com/maps/api/js?sensor=false" not allowed
答案 0 :(得分:1)
这实际上是因为域名未在config.xml中列入白名单。您需要为计划发送请求的任何域添加以下内容。
例如......
<access uri="*" subdomains="true" />
<access uri="http://google.com" subdomains="true" />
如果您查看我创建的示例应用程序,它还应该帮助您指明正确的方向。 https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Maps