Bug-ID-Nummer |
BUG-000147645 |
Eingereicht | March 16, 2022 |
Zuletzt geändert | June 8, 2025 |
Gilt für | No Product Found |
Gefunden in Version | N/A |
Betriebssystem | Windows OS |
Betriebssystemversion | 10.0 64 Bit |
Behoben in Version | 1.23 |
Status | Fixed
Der Bug wurde behoben. Weitere Informationen finden Sie ggf. unter "Behoben in Version" und unter "Zusätzliche Informationen".
|
Zusätzliche Informationen
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.
Workaround
- 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;
Schritte zur Reproduzierung