0

我正在使用 OpenLayers 使用 USGS 数据集绘制地震地图,该数据集位于:

https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.geojson

我正在添加图层并像这样配置视图:

var map = new Map({
  target: 'map',
  layers: [
    new TileLayer({
      source: new OSM()
    }),
    new ImageLayer({
      opacity: 0.3,
      source: raster
    }),
    new WebGLPointsLayer({
      source: new VectorSource({
        url: "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.geojson",
        format: new GeoJSON(),
        attributions: 'USGS'
      })
    })
  ],
  view: new View({
    center: fromLonLat([103.8198, 1.3521]),
    zoom: 1
  })
});

我的视图设置为在缩放级别 1 时,日期线包含在范围内。USGS 数据不会呈现在日期线的右侧。我知道这是因为 VectorSource 的默认范围是 [-180, -90, 180, 90]。我的问题是,如何将该范围更改为地图视图的范围,以便数据呈现在日期线的另一侧?

似乎最好的方法是截取 USGS 数据的坐标并对 lon 坐标进行转换,可能是通过ol/proj.transformol/proj.transformExtent,但我还没有找到 openlayers包含坐标的数据对象,也不是对它们应用地图或变换的方式。

4

1 回答 1

1

向量层使用以格林威治子午线为中心的 EPSG:3857 除非指定的视图投影

您可以尝试定义以日期线为中心的球形墨卡托

proj4.defs('sphmerc180', '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=180.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs');
register(proj4);

var sphmerc180 = getProjection('sphmerc180');
sphmerc180.setExtent(getProjection('EPSG:3857').getExtent());
sphmerc180.setGlobal(true);

然后将其用作视图投影

  view: new View({
    projection: sphmerc180,
    center: fromLonLat([103.8198, 1.3521], sphmerc180),
    zoom: 1
  })
于 2020-03-21T22:28:23.370 回答