Número de ID del error |
BUG-000148829 |
Enviado | April 27, 2022 |
Última modificación | December 10, 2024 |
Relacionado con | ArcGIS Online |
Versión encontrada | 10.1 |
Sistema operativo | Windows OS |
Versión de sistema operativo | N/A |
Estado | In Review
El problema está en revisión. El proceso de revisión garantiza que el problema contenga toda la información necesaria y sea fácil de entender, que no sea un duplicado de un problema existente y que sea un error válido o una solicitud de mejora. Durante esta fase, es posible que se pongan en contacto con usted para aclaraciones o recabar más información.
|
Solución alternativa
Define the geometry manually using Update Layer Definition.
Step 1: Disable Optimization:
- Go to the Rest Endpoint of the Service as the data owner or an administrator of the organization.
- Follow the procedure of this article (https://support.esri.com/en-us/knowledge-base/how-to-access-the-rest-and-admin-endpoints-of-an-arcgis-000027990) to access the admin endpoint for the service.
- Click the sub-layer that's optimized.
- Click Update Definition at the bottom.
- Ensure the top of the page states 'Update Layer Definition', not 'Update Service Definition'. If it states Service, step 3 is likely missed.
- Remove everything from the Update Definition JSON box and only add the following JSON to disable Optimization:
- {"multiScaleGeometryInfo":null}.
- Be sure Async is set to True.
- Click Update Definition.
Step 2: Re-Enable Optimization with all levels:
- Go to the Rest Endpoint of the Service as the data owner or an administrator of the organization.
- Follow the procedure of this article (https://support.esri.com/en-us/knowledge-base/how-to-access-the-rest-and-admin-endpoints-of-an-arcgis-000027990) to access the admin endpoint for the service.
- Click the sub-layer that's optimized.
- Click Update Definition at the bottom.
- Ensure the top of the page states 'Update Layer Definition', not 'Update Service Definition'. If it states Service, step 3 is likely missed.
- Remove everything from the Update Definition JSON box and only add the following JSON to re-enable Optimization with your own defined layers:
- {"multiscaleGeometryInfo" :{"levels" : [1,3,5,7,9,11]}}.
- Be sure Async is set to True.
- Click Update Definition.
Note: This may take a while, but once it's done, the geometry can be drawn properly.
Pasos para reproducir