Numéro d’ID de bogue |
BUG-000147645 |
Envoi | March 16, 2022 |
Dernière modification | June 8, 2025 |
S’applique à | No Product Found |
Version trouvée | N/A |
Système d’exploitation | Windows OS |
Version du système d’exploitation | 10.0 64 Bit |
Version de correction | 1.23 |
Statut | Fixed
Le bogue a été corrigé. Pour plus d’informations, reportez-vous aux sections Version de correction et Informations supplémentaires, le cas échéant.
|
Informations supplémentaires
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.
Solution de contournement
- 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;
Étapes pour reproduire