Bug ID Number |
BUG-000150254 |
Submitted | June 24, 2022 |
Last Modified | June 5, 2024 |
Applies to | ArcGIS API for JavaScript |
Version found | 4.23 |
Operating System | Windows OS |
Operating System Version | 11.0 64 bit |
Status | As Designed
After review by the development team, it has been determined that this behavior is as designed. See the Additional Information section for details.
|
Additional Information
The union of TiledLayers (including ImageryTiledLayers) defines the extent in a scene.
TiledLayers are not client-side re-projectable in a SceneView and define the tiling scheme for the view. As a consequence, this also defines the scene's extent.
Workaround
- When using ArcGIS API for JavaScript 4.21 and above, users need to add a basemap to make it work:
const map = new Map({
basemap: "topo-vector",
layers: [
dynamicImageLayer,tilelayer,graphicsLayer
]
});
- Republish the ImageryTiledLayer with the desired larger extent.
Steps to Reproduce