使用传单JS

时间:2018-02-28 00:09:06

标签: javascript leaflet maps

我试图为不同的缩放级别找到一组图像(png)图块,用于构建月球表面地图的TileLayer。

如果有人制作月球地图,并在月球地图上绘制陨石坑坐标。请帮我找一下月球表面贴图。

1 个答案:

答案 0 :(得分:1)

一种方法是使用来自NASA / USGS的WMS服务,即来自https://webgis.wr.usgs.gov/ogc/Examples.htm。在Leaflet中使用WMS之前,请阅读Leaflet WMS/TMS tutorial

通过几个getCapabilities查询并阅读该教程,制作月球图变得非常简单:

var map = L.map('leaflet', {
    crs: L.CRS.EPSG4326,
    center: [0, 0],
      zoom: 0
});

var wmsLayer = L.tileLayer.wms('https://www.mapaplanet.org/explorer-bin/imageMaker.cgi?map=Moon', {
    layers: 'lunar_lidar',
    attribution: '<a href="http://www.usgs.gov/">United States Geological Survey</a>'
}).addTo(map);

example live in a plunker over here

Leaflet moon map

上面使用的马赛克图层是LIDAR高程剖面,具有逼真色调和山体阴影。请注意,可能存在或可能不存在真彩色马赛克,其他高程马赛克以及大量遥感数据马赛克。请注意,有比NASA / USGS更多的空间/地理组织可能提供类似的服务。

请注意,通过WMS提供的地图投影可能不是您所期望的。请注意这些WMS服务的使用条件。并阅读Leaflet WMS教程。