<!-- Hello! Thanks for contributing. For the fastest response and resolution, please: - Make the issue title a succinct but specific description of the unexpected behavior. Bad: "Map rotation is broken". Good: "map.setBearing(...) throws a TypeError for negative values" - Include a link to a minimal demonstration of the bug. We recommend using https://jsbin.com. - Ensure you can reproduce the bug using the latest release. - Check the console for relevant errors and warnings - Only post to report a bug. For feature requests, please use https://github.com/mapbox/mapbox-gl-js/issues/new?template=Feature_request.md instead. Direct all other questions to https://stackoverflow.com/questions/tagged/mapbox-gl-js --> **mapbox-gl-js version**: v2.8.2 **browser**: Any ### Steps to Trigger Behavior 1. I am trying to use my own 1 meter high resolution RGB tiles to setTerrain, rather than using mapbox://mapbox.mapbox-terrain-dem-v1, for a small area. 2. The code is: ` map.addSource("rwanda-dem", { "type": "raster-dem", "tiles": ["/public/images/raster-dem/{z}/{x}/{y}.webp"], "tileSize": 514, "maxzoom": 18, "minzoom": 1, });` 3. The area's terrain was generated correctly with elevation, excep the whole area is floating from other part of the map where no elevation covered. 