Número de ID del error |
BUG-000147645 |
Enviado | March 16, 2022 |
Última modificación | June 8, 2025 |
Relacionado con | No Product Found |
Versión encontrada | N/A |
Sistema operativo | Windows OS |
Versión de sistema operativo | 10.0 64 Bit |
Versión corregida | 1.23 |
Estado | Fixed
El problema se ha solucionado. Si corresponde, consulte Versión corregida e Información adicional para obtener más información.
|
Información adicional
This is a documentation issue and not a bug in the code. The documentation for the geometry types and geometry functions is updated to properly reflect the ways geometries can be constructed and what the actual types of the rings and paths are within each type.
Solución alternativa
- Use the JavaScript Object Notation (JSON) directly or convert a polyline back to JSON. The code below returns the x-coordinate:
return polylineJSON.paths[0][0][0];
- If working directly with the point objects within the polyline object, call the property of a point data type, instead of using an index. The code below returns the x-coordinate:
return poly.paths[0][0].x;
Pasos para reproducir