I am trying to use the WMTS service referred to by https://gibs.earthdata.nasa.gov/wmts/epsg4326/best/1.0.0/WMTSCapabilities.xml
The code I am using is:
const wmtsProvider = new WebMapTileServiceImageryProvider({
url: 'https://gibs.earthdata.nasa.gov/wmts/epsg4326/best/wmts.cgi?', //GetTile url
layer: 'GEDI_ISS_L4B_Aboveground_Biomass_Density_Mean_201904-202303', //Layer Identifier
style: 'default',
tileMatrixSetID: '1km',
format: 'image/png',
//tilingScheme: new Cesium.GeographicTilingScheme(),
});
The loaded layer is reprojected in a wrong area. I tried to use a different tilescheme but the result is the same.
I ask you for support to solve this problem that I have encountered for the moment with this WMTS
Thanks in advance.