我曾尝试使用Google api在我的网站上制作地图,但是现在要用它来支付一定的费用。 无论如何,我发现了OpenLayers api及其出色的特性,但是当我要求地图以我当前位置为中心时,地图将不再呈现.-。 我的控制台没有任何错误,甚至使用了promises,因此一旦获得坐标,地图将开始渲染。
这是我的index.js代码
import 'ol/ol.css';
import { Map, View } from 'ol';
import TileLayer from 'ol/layer/Tile';
import OSM from 'ol/source/OSM';
var lng;
var lat;
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {
lat = Promise.resolve(position.coords.latitude);
lng = Promise.resolve(position.coords.longitude);
Promise.all([lat, lng]).then((res) => {
console.log(res);
const map = new Map({
target: 'map',
layers: [
new TileLayer({
source: new OSM()
})
],
view: new View({
center: [lat, lng],
zoom: 0
})
});
})
})
}
这是我的html代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Using Parcel with OpenLayers</title>
<style>
#map {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="./index.js"></script>
</body>
</html>
运行所有这些我正在使用的节点,如果我从条件中获取了const映射,该映射将显示,但是那不是我想看到的中心:D
答案 0 :(得分:1)
OpenLayers映射的默认投影为EPSG:3857
。地理位置API收到的坐标在投影EPSG:4326
中。
您需要将接收到的坐标转换为EPSG:3857
(例如,使用fromLonLat)或将地图的投影设置为EPSG:4326
。