不具合 ID 番号 |
BUG-000147645 |
送信されました | March 16, 2022 |
最終更新日 | June 8, 2025 |
適用対象 | No Product Found |
見つかったバージョン | N/A |
オペレーティング システム | Windows OS |
オペレーティング システムのバージョン | 10.0 64 Bit |
修正されたバージョン | 1.23 |
ステータス | Fixed
この不具合は修正されました。 詳細については、「バージョンの修正内容」および「参考情報」(該当する場合) をご参照ください。
|
参考情報
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.
対処法
- 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;
再現の手順