Número de ID do Erro |
BUG-000147645 |
Enviado | March 16, 2022 |
Última Modificação | June 8, 2025 |
Aplica-se à | No Product Found |
Versão encontrada | N/A |
Sistema Operacional | Windows OS |
Versão do Sistema Operacional | 10.0 64 Bit |
Versão Fixa | 1.23 |
Status | Fixed
O problema foi corrigido. Consulte a Versão Corrigida e Informações Adicionais, se aplicável, para obter mais informações
|
Informações Adicionais
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.
Solução Provisória
- 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;
Etapas para Reproduzir