Hi, I use my DEM generate from Drone using OpenDroneMap. After that, I use gdal_warp to re-project my DSM to EPSG:3857 and transform the greyscale data into the RGB data using rio-rgbify and last step i use gdal2tiles.py to generate xyz tiles. But i got error when add tiles layer to Mapbox GL JS as the picture shown below.
this.map.addSource("mydem", {
type: "raster-dem",
tiles: [
"https://url/tiles/dem-rgb-v2/{z}/{x}/{y}.png",
],
tileSize: 512,
maxzoom: 18
});
this.map.setTerrain({ source: "mydem", exaggeration: 0.7 });


Hi, I use my DEM generate from Drone using OpenDroneMap. After that, I use gdal_warp to re-project my DSM to EPSG:3857 and transform the greyscale data into the RGB data using rio-rgbify and last step i use gdal2tiles.py to generate xyz tiles. But i got error when add tiles layer to Mapbox GL JS as the picture shown below.