| Bug-ID-Nummer |
BUG-000150254 |
| Eingereicht | June 24, 2022 |
| Zuletzt geändert | June 5, 2024 |
| Gilt für | ArcGIS API for JavaScript |
| Gefunden in Version | 4.23 |
| Betriebssystem | Windows OS |
| Betriebssystemversion | 11.0 64 bit |
| Status | As Designed
Nach Überprüfung durch das Entwicklungsteam wurde festgestellt, dass dieses Verhalten wie geplant ist. Weitere Informationen finden Sie im Abschnitt "Zusätzliche Informationen".
|
Zusätzliche Informationen
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.
Schritte zur Reproduzierung