0

我正在使用 Dart 中的 js 库来访问 OpenLayers。相关代码如下:

js.scoped(() {
  ol = js.retain(js.context.OpenLayers);
  var max_extent = new js.Proxy(ol.Bounds, -13652354.432172, 6026153.418145, -13574082.915218, 6065289.1766216);
  var restricted_extent = max_extent;

  if (controls == null){

    var options = js.map ({
      'maxExtent': max_extent,
      'restrictedExtent' : restricted_extent,
      'units' : 'm',
      'projection': new js.Proxy(ol.Projection, 'EPSG:900913'),
      'displayProjection' : new js.Proxy(ol.Projection, 'EPSG:4326'),
      'controls' : js.array([ new js.Proxy(ol.Control.Attribution),
                              new js.Proxy(ol.Control.Navigation),
                              new js.Proxy(ol.Control.ArgParser),
                              new js.Proxy(ol.Control.PanPanel),
                              new js.Proxy(ol.Control.ZoomPanel)
                             ])
    });
    _treemap = js.retain( new js.Proxy( ol.Map, map_div_id, options ) );
  }

  var roads = new MapLayer(ol, layer_type:'road').layer;
  var aerial = new MapLayer(ol, layer_type:'hybrid').layer;

  _treemap.addLayers(js.array([roads, aerial]));
  _treemap.setBaseLayer(roads);
  _treemap.zoomToMaxExtent();
  var result = _treemap.layers();
});

除最后一行外,所有工作都按预期工作。_treemap.layers()应该返回一个数组OpenLayer.Layer。当该行执行时,我得到一个错误:

例外:类型错误:对象 [对象数组] 没有方法“应用”

那么,在我的 Dart 代码中从 javascript 函数获取/处理返回值的正确方法是什么?

4

1 回答 1

1

layers是一个数组(参见OpenLayers.Map.layers)。所以你应该使用:

var result = _treemap.layers;

_treemap.layers()您一起尝试调用layers,因为它是一个函数。

关于您的代码的一个旁注:当您使用时,js.map({})您不需要使用js.arrayjs.map在对象树中。您可以简单地给出一个类似JSON的结构。

var options = js.map ({
  'maxExtent': max_extent,
  'restrictedExtent' : restricted_extent,
  'units' : 'm',
  'projection': new js.Proxy(ol.Projection, 'EPSG:900913'),
  'displayProjection' : new js.Proxy(ol.Projection, 'EPSG:4326'),
  'controls' : [ new js.Proxy(ol.Control.Attribution),
                 new js.Proxy(ol.Control.Navigation),
                 new js.Proxy(ol.Control.ArgParser),
                 new js.Proxy(ol.Control.PanPanel),
                 new js.Proxy(ol.Control.ZoomPanel)
               ])
});
于 2013-02-27T07:29:55.677 回答