我正在尝试使用 Meteor 在页面上加载带有标记的简单 map 。我正在使用 GoogleMaps package和 Iron .
map 在我的浏览器中正确显示,但是当我使用 iOS 模拟器(iPhone 6/iOS 8.3)尝试它时,它永远不会加载:它是自动运行的,系统地返回 false on GoogleMaps.loaded() ...
另一方面,Geolocation 正在正确返回位置。
这是我设置的一个存储库,用于查看整个问题:https://github.com/Loschcode/meteor-iron-google-maps-issue
重要的几行可能是 GoogleMaps 包设置:
#
# Helpers
#
Template.GeoMap.helpers {
geolocationError: =>
error = Geolocation.error()
return error and error.message
mapOptions: =>
latLng = Geolocation.latLng()
if (Meteor.isCordova)
alert(GoogleMaps.loaded())
# Initialize the map once we have the latLng.
if GoogleMaps.loaded() and latLng
if (Meteor.isCordova)
alert('GoogleMaps.loaded')
return {
center: new google.maps.LatLng(latLng.lat, latLng.lng)
zoom: @MAP_ZOOM
}
}
以及过程:
#
# onCreated
#
Template.GeoMap.onCreated =>
GoogleMaps.load()
if (Meteor.isCordova)
alert('GoogleMaps.load')
# When it's ready, we process the position
GoogleMaps.ready 'geoMap', (map) =>
# THIS IS NEVER FIRED
我不确定这是人为错误还是问题,但我已经做了好几个小时了,我真的不明白
注意:在我的测试存储库中,我让一些 alert() 在 iOS 上触发以清楚地看到问题。
对这个问题有任何想法吗?对不起 CoffeeScript 和 Iron 结构。
Best Answer-推荐答案 strong>
在 Cordova 上使用外部 API 时,您需要在项目目录的顶层配置一个 mobile-config.js 文件。
对于 google api,您的 mobile-config.js 看起来像
App.accessRule('*.googleapis.com/*');
docs
关于ios - Meteor GoogleMaps.load() 在 iOS 上无法使用 Iron,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33310001/
|