OpenLayers 功能没有得到渲染

OpenLayers Feature is not getting rendered

我开始玩 OpenLayers5 但我什至不能在地图上画一个简单的点。 我遵循了教程并掌握了一些示例,但它们总是试图实现比我想要完成的更复杂的事情:在地图上绘制一个点。

我确实遗漏了什么,但我看不到它是什么。我创建了 map 并添加了一个 VectorLayer 和一个包含我要绘制的单个点的 VectorSource。然而在用作基础的 TilesLayer 上什么也没有出现...

Hints/Directions 非常欢迎我缺少的内容:)。我确定我遗漏了一些小细节,但我无法克服它。

这是我的 JS 文件:

import 'ol/ol.css';
import {Map,View} from 'ol';
import TileLayer from 'ol/layer/Tile';
import VectorLayer from 'ol/layer/Vector';
import {fromLonLat} from 'ol/proj';
import Feature from 'ol/Feature';
import Point from 'ol/geom/Point';
import VectorSource from 'ol/source/Vector';
import OSM from 'ol/source/OSM';


document.addEventListener('DOMContentLoaded', initialize, false);



function initialize() {

  var mapCenter = [-5.93, 43.52]; // Long, lat
  var pointCoords = [-5.93, 43.52];

  var features = [
    new Feature(new Point(pointCoords))
  ];


  const map = new Map({
    target: 'mapCanvas',
    layers: [
     new TileLayer({
        source: new OSM()
      }),
      new VectorLayer({
        source: new VectorSource({
          features: features
        })
      })
    ],
    view: new View({
      center: fromLonLat(mapCenter),
      zoom: 12
    })
  });

}

以及简单的 HTML 文件:

<!DOCTYPE html>
<html>

<head>
    <link rel="stylesheet" type="text/css" href="css/posiciones.css">


</head>

<body>
    <div id="mapCanvas"></div>
    <div id="sideMenu"></div>


    <script src="js/posiciones.js"></script>
</body>

在创建要素之前,您应该通过 fromLatLon(pointCoords); 将点坐标从 (Lon, Lat) 转换为 WebMercator。