我对使用 openlayers 很陌生。下面的教程教如何显示地图和构建本地,但问题是我无法更改地图的中心。即使我改变了位置,它也会显示地图的“零”点。
https://openlayers.org/en/latest/doc/tutorials/bundle.html
下面是 .js 示例和 .html,问题是中心:我无法更改地图中心
import 'ol/ol.css';
import {Map, View} from 'ol';
import TileLayer from 'ol/layer/Tile';
import OSM from 'ol/source/OSM';
const map = new Map({
target: 'map',
layers: [
new TileLayer({
source: new OSM()
})
],
view: new View({
center: [0, 0],
zoom: 0
})
});
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Using Parcel with OpenLayers</title>
<style>
#map {
width: 400px;
height: 250px;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="./index.js"></script>
</body>
</html>
郎朗坤
慕尼黑8549860
相关分类