Meteor.js谷歌地图初始化



我在使用Meteor数据库中的标记初始化谷歌地图时遇到问题。我到处都放了console.log消息来测试它——它似乎非常不一致——有时会创建和加载标记——有时它会进入initialize函数,但不会进入创建标记的循环。我在路由器中有一个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')];
    }
  });
});

这看起来就像是在页面的第一次渲染中——标记在地图上正确创建并设置了动画。但是,如果刷新页面,有时会创建标记,而其他时候则不会。

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

有什么建议吗?谢谢

@Saimeunt是正确的。

我需要使用router.onBeforeAction("加载")为iron路由器添加默认加载挂钩。否则,waitOn订阅不会真正应用,并且在加载数据之前加载页面。

相关内容

  • 没有找到相关文章

最新更新