Hemanth
Hemanth

Reputation: 203

Cannot find name 'ol'

I am working for the first time on open layers (angular 4). after installing and importing files in ts.

these are the imported files

  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({

I am getting this error Cannot find name 'ol'.

Upvotes: 2

Views: 2933

Answers (1)

geocodezip
geocodezip

Reputation: 161334

new ol.Map({ should be new Map({, see 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
    })
  });

Upvotes: 3

Related Questions