找不到名称“ ol”

时间:2018-08-19 06:34:37

标签: toggle openlayers openlayers-3 angular-openlayers

我是第一次在开放层上工作(角度4)。 在ts中安装和导入文件后。

这些是导入的文件

  import Map from 'ol/Map.js';
  import View from 'ol/View.js';
  import TileLayer from 'ol/layer/Tile.js';
  import OSM from 'ol/source/OSM.js';
  import TileWMS from 'ol/source/TileWMS.js';

  new ol.Map({

我收到此错误 找不到名称“ ol”。

1 个答案:

答案 0 :(得分:2)

new ol.Map({应该为new Map({,请参见the simple map example in the documentation

  import Map from 'ol/Map.js';
  import View from 'ol/View.js';
  import TileLayer from 'ol/layer/Tile.js';
  import OSM from 'ol/source/OSM.js';


  var map = new Map({
    layers: [
      new TileLayer({
        source: new OSM()
      })
    ],
    target: 'map',
    view: new View({
      center: [0, 0],
      zoom: 2
    })
  });