你好我们正在使用meteor-google-map。我可以在桌面上看到它们,但在移动设备上我无法看到它们。任何人都可以告诉我,我做错了什么?在移动设备上,地图容器全部为空白。这是一张图片
如果我必须列出域名的白名单,那么有人可以告诉我,我将如何列出谷歌地图的白名单,因为来自文档
tel:,geo:,mailto:,sms:,market:*被允许并在外部启动(手机应用程序或Android上的电子邮件客户端)
我认为谷歌地图是允许的
这是谷歌地图代码
的index.html
<div class="map-container">
{{> googleMap name="exampleMap" options=exampleMapOptions}}
</div>
index.js
exampleMapOptions: function() {
// Make sure the maps API has loaded
if (GoogleMaps.loaded()) {
// Map initialization options
return {
center: new google.maps.LatLng(Meteor.user().profile.latitude, Meteor.user().profile.longitude),
zoom: 13
};
}
}
Template.body.onCreated(function() {
// We can use the `ready` callback to interact with the map API once the map is ready.
GoogleMaps.ready('exampleMap', function(map) {
// Add a marker to the map once it's ready
var marker = new google.maps.Marker({
position: map.options.center,
map: map.instance
});
});
});
更新
我发现我收到错误未被捕获的参考错误:谷歌未定义
所以我尝试了白名单,但它无效
> App.info({ id: 'com.example.matt.uber',
>name: 'MedCircle',
> description: 'Get über power in one button click',
>author: 'Matt
> Development Group',
>email: 'contact@example.com',
>website: 'http://example.com'
>});
>
> App.setPreference('BackgroundColor', '0xff0000ff');
> App.setPreference('HideKeyboardFormAccessoryBar', true);
> App.setPreference('Orientation', 'default');
>
>
> // App.accessRule('*.googleapis.com');
> //App.accessRule('*.gstatic.com');
>// App.accessRule('*.google.com'); //
>// App.accessRule('maps.googleapis.com');
>// App.accessRule('maps.gstatic.com');
>// App.accessRule('mt0.googleapis.com');
>// App.accessRule('mt1.googleapis.com');
>// App.accessRule('csi.gstatic.com');
>
>
> // <access origin="*://*.googleapis.com/*" subdomains="true" />
> //<access origin="*://*.gstatic.com/*" subdomains="true" />
> // <accessorigin="*://*.google.com/*" subdomains="true" />
> // <accessorigin="*://*.googleusercontent.com/*" subdomains="true" />
>
> App.accessRule('*');
答案 0 :(得分:2)
我想出来我必须允许这些
App.accessRule('http://*');
App.accessRule('https://*');