我开始玩一点,OpenLayers5
但我什至不能在地图上画一个简单的点。我遵循教程并掌握了一些示例,但它们总是试图实现我想要完成的更复杂的事情:在地图上绘制一个点。
我肯定错过了一些东西,但我看不到它是什么。我创建map
并添加了VectorLayer
一个VectorSource
包含我要绘制的单点的 a。TilesLayer
然而,用作基地的东西上没有出现任何东西......
非常欢迎关于我所缺少的提示/指示:)。我确定我遗漏了一些小细节,但我无法克服它。
这是我的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>