supplier QML Value Type
場所のサプライヤー、場所のイメージ、レビュー、編集に関するデータを保持します。詳細
Import Statement: | import QtLocation 6.8 |
Since: | QtLocation 5.5 |
詳細説明
各インスタンスは、サプライヤの名前、URL、アイコンを含む、サプライヤに関する一連のデータを表します。サプライヤーは通常、企業や組織です。
注意: Places APIは、'retrieve-only'オブジェクトとしてのみサプライヤをサポートしています。サプライヤをプロバイダに送信することは、サポートされていないユースケースです。
例
以下の例では、QMLでサプライヤーを作成し、表示する方法を示しています:
import QtQuick import QtPositioning import QtLocation Supplier { id: placeSupplier name: "Example" url: "http://www.example.com/" } Text { text: "This place is was provided by " + placeSupplier.name + "\n" + placeSupplier.url }
ImageModel,ReviewModel,EditorialModelもご参照ください 。
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.