0

我正在尝试让 OpenLEayers 5 的基本示例正常工作。这是我的index.html

<!DOCTYPE html>
<html>
  <head>
    <title>Simple Map</title>
    <link rel="stylesheet" href="https://openlayers.org/en/v5.2.0/css/ol.css" type="text/css">
    <!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
    <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>

  </head>
  <body>
      slkdj
    <div id="map" class="map"></div>
    <script>
      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
        })
      });
    </script>
  </body>
</html>

我将所有 OpenLayers 文件./ol/放在我的 Web 服务器上。此文件夹包含以下文件:array.jsarray.js.map、 ...、Map.jsMap.js.map。我已经通过运行以下命令下载了文件:(npm install ol版本为 5.2.0)。

该网页显示一个空白站点。显示地图需要什么?

4

0 回答 0