我试过用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>

要运行所有这些操作,我使用node,如果从条件中获取const映射,则映射将显示,但这并不是我希望看到的中心:D

最佳答案

OpenLayers地图的默认投影是EPSG:3857。地理定位API接收到的坐标是投影EPSG:4326
您需要将接收到的坐标转换为EPSG:3857(例如使用fromLonLat)或将地图的投影设置为EPSG:4326

09-25 22:27