gpt4 book ai didi

javascript - Meteor.js Google map 初始化

转载 作者:行者123 更新时间:2023-12-03 11:53:32 24 4
gpt4 key购买 nike

我在使用 Meteor 数据库中的标记初始化 Google map 时遇到问题。我已经将 console.log 消息放在各处来测试它 - 它似乎非常不一致 - 有时创建并加载标记 - 有时它进入初始化函数,但它不会进入循环来创建标记。我在路由器中有一个 waitOn 订阅,以确保在运行初始化函数之前数据已加载且可用。

html 模板:

<template name="mapGoogle">
<div id="map-canvas" style="width:900px; height:420px;"></div>
</template>

客户端js:

Template.mapGoogle.rendered = function(){
Session.set('loading', true');
initialize();
}

var initialize = function(){
console.log('inside initialize');

var latitude = 22.2924391;
var longitude = 94.1967784;

var map; var icon; var lat; var lng; var icon;
var location = new google.maps.LatLng(latitude, longitude);
var markers = [];

var styles = [
{
stylers: [
{ hue: '#3cff00' },
{ visibility: 'simplified' },
{ gamma: 0.5 },
{ weight: 0.5 }
]
},
{
elementType: 'labels',
stylers: [
{ visibility: 'on' }
]
},
{
featureType: 'water',
stylers: [
{ color: '#83bbdd' }
]
}
];

var styledMap = new google.maps.StyledMapType(styles,
{name: "Styled Map"});

// Create a map object, and include the MapTypeId to add
// to the map type control.
var mapOptions = {
zoom: 2,
center: new google.maps.LatLng(latitude, longitude),
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.TERRAIN, 'map_style']
}
};

map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);

map.mapTypes.set('map_style', styledMap);
map.setMapTypeId('map_style');

var sharkFin;

Sharks.find().forEach(function(shark){
console.log('inside shark for loop)
sharkFin = '/images/fins/shark_fin.png';
latShark = shark.latitude;
lngShark = shark.longitude;

marker = new google.maps.Marker({
position: new google.maps.LatLng(latShark, lngShark),
map: map,
animation: google.maps.Animation.DROP,
icon: sharkFin,
});
})

Airlines.find().forEach(function(airline){

console.log('inside airline for loop');

icon = airline.iconAir;
lat = airline.latitude;
lng = airline.longitude;
title = airline.title;
content = airline.content;
if(airline.webLink){webLink = airline.webLink}else{webLink=""};

marker = new google.maps.Marker({
position: new google.maps.LatLng(lat, lng),
map: map,
animation: google.maps.Animation.DROP,
icon: icon,
title: title,
content: content,
webLink: webLink
});

var listener3 = google.maps.event.addListener(marker, 'mouseover', function(marker) {
console.log('inside marker listener');
return function(){
$('#content').find('div').remove();
if(webLink==""){
$('#content').append('<div><h1>'+ marker.title+'</h1><br>'+ marker.content+'<div>');
}else{
$('#content').append('<div><h1>'+ marker.title+'</h1><br>'+ marker.content+"<br><br>More information can be found on the airline's website <a href="+marker.webLink+'>here</a>.<div>');
}
}
}(marker)); //use closure for access to variables.
});
console.log('session variable set to false');
Session.set('loading',false);

}

Router.js -

Router.map(function() {

this.route('mainPage', {path:'/',
onBeforeAction: function(){
console.log('inside router session to true');
Session.set('loading',true);
},
waitOn: function(){
return [Meteor.subscribe('airlines'),
Meteor.subscribe('sharks')];
}
});
});

似乎在页面的第一次渲染中 - 标记已在 map 上正确创建和动画化。但是,如果我刷新页面,有时会创建标记,有时则不会。

我还尝试在mapGoogle渲染的js代码上使用google.maps.event.addDomListener(window,'load',initialize)。但同样的问题仍然存在。

请问有什么建议吗?谢谢。

最佳答案

@Saimeunt 是正确的。

我需要使用 Router.onBeforeAction("loading") 为 Iron-router 添加默认加载钩子(Hook)。否则,waitOn 订阅不会真正应用,页面会在数据加载之前加载。

关于javascript - Meteor.js Google map 初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25706055/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com