2

在我的 Meteor 客户端中,我定义了一个地图对象:

Meteor.startup(function () {
  map = L.map('map_canvas').locate({setView: true, maxZoom: 21});
  L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
      attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
  }).addTo(map);
});

我将它用作全局,这样我就可以在 Template.xxxx.events、Template.yyy.rendered 中访问它...(不知道这是否是最好的方法,请您对此提出意见

所以直到这里一切都很好。

现在我需要执行一个地理空间查询,它只能在服务器端完成:

Meteor.startup(function () {
  Meteor.publish("AllMessages", function() {
    lists._ensureIndex( { location : "2d" } );
    var bottomLeftLat = map.getBounds()._southWest.lat;
    var bottomLeftLng = map.getBounds()._southWest.lng;
    var topRightLat = map.getBounds()._northEast.lat;
    var topRightLng = map.getBounds()._northEast.lng;
    return lists.find( { "location": { "$within": { "$box": [ [bottomLeftLng, bottomLeftLat] , [topRightLng, topRightLat] ] } } } );
  });
});

但是我的应用程序崩溃了,我得到:

Exception from sub ZeJzWHdF8xQg57QtF ReferenceError: map is not defined
    at null._handler (app/server/Server.js:4:25)
    at _.extend._runHandler (app/packages/livedata/livedata_server.js:815:31)
    at _.extend._startSubscription (app/packages/livedata/livedata_server.js:714:9)
    at _.extend.protocol_handlers.sub (app/packages/livedata/livedata_server.js:520:12)
    at _.extend.processMessage.processNext (app/packages/livedata/livedata_server.js:484:43)

这是加载时间的事情吗?在进行查询之前,我需要设置超时并等到地图加载完毕?

编辑这是我尝试过但不起作用的方法

服务器

Meteor.startup(function () {
  Meteor.publish("AllMessages", function() {
    lists._ensureIndex( { location : "2d" } );
    return lists.find();
  });
});

Meteor.methods({
  getListsWithinBounds: function(bounds) {
    return lists.find( { "location": { "$within": { "$box": [ [bottomLeftLng, bottomLeftLat] , [topRightLng, topRightLat] ] } } } );
  }
});

客户

Meteor.startup(function () {
  map = L.map('map_canvas').locate({setView: true, maxZoom: 21});
  L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
      attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
  }).addTo(map);
    bounds = {};    
    map.on('locationfound', function(e){ 
      bounds.bottomLeftLat = map.getBounds()._southWest.lat;
      bounds.bottomLeftLng = map.getBounds()._southWest.lng;
      bounds.topRightLat = map.getBounds()._northEast.lat;
      bounds.topRightLng = map.getBounds()._northEast.lng;
      console.log(bounds);
      Meteor.call("getListsWithinBounds", bounds, function(err, result) {
        console.log('call'+result); // should log a LocalCursor pointing to the relevant lists
      });
    });
});
4

2 回答 2

2

编辑更好的是,使用自定义反应数据源。我在这里写了一个小教程。

旧帖:

我已经实现了类似的东西。在我的服务器代码中,我有以下发布功能:

// Publish those trails within the bounds of the map view.
Meteor.publish('trails', function(bounds){
 if (bounds && bounds.southWest && bounds.northEast) {
  return Trails.find({'coordinates': {'$within' : 
    { '$box' : [bounds.southWest, bounds.northEast] }
  }}, {
    limit: 100
  });
 }
});

在我的客户端代码中,我保留了一个仅限客户端的 mapbounds 集合。(基本上,它是一种只有一个文档的反应模型)。

MapBounds = new Meteor.Collection(null);

我在客户端上有一个如下所示的订阅:

// Get trails that are located within our map bounds. 
Meteor.autorun(function () {
 Session.set('loading', true);
  Meteor.subscribe('trails', MapBounds.findOne(), function(){
   Session.set('loading', false);
  }); 
});

最后,每当地图边界发生变化时,我的传单类都会更新边界模型。

 onViewChange: function(e){
  var bounds = this.map.getBounds()
    , boundObject = { 
        southWest: [bounds._southWest.lat, bounds._southWest.lng],
        northEast: [bounds._northEast.lat, bounds._northEast.lng] 
      };

  if (MapBounds.find().count() < 1) MapBounds.insert(boundObject);
  else MapBounds.update({}, boundObject);
 }
于 2013-03-19T21:16:38.877 回答
0

map在客户端上定义,因此该变量在服务器上不可用。由于 Leaflet 是客户端 API,因此您也无法在服务器上进行任何地图处理。

如果您想要求服务器从某个范围内的集合返回列表,您应该计算客户端上的范围,然后告诉服务器这些范围,以便它可以为您找到信息。一个好的方法是使用Meteor.method.

在服务器上,定义一个接受边界并在这些边界内返回列表的方法:

Meteor.methods({
  getListsWithinBounds: function(bounds) {
    return lists.find({location: {"$within": {"$box": [bounds.bottomLeftLng, bounds.bottomLeftLat], [bounds.topRightLng, bounds.topRightLat]}});
  }
});

然后在客户端,调用服务端的方法:

Meteor.call("getListsWithinBounds", bounds, function(err, result) {
  console.log(result); // should log a LocalCursor pointing to the relevant lists
});
于 2013-03-18T23:30:26.870 回答