找不到名称 'ol'

Cannot find name 'ol'

我第一次在开放层上工作 (angular 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'。

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
    })
  });