supplier QML Value Type
장소의 공급업체, 장소의 이미지, 리뷰 또는 사설에 관한 데이터를 보관합니다. 더 보기...
Import Statement: | import QtLocation 6.9 |
Since: | QtLocation 5.5 |
상세 설명
각 인스턴스는 공급업체에 대한 데이터 집합을 나타내며, 여기에는 공급업체의 이름, URL 및 아이콘이 포함될 수 있습니다. 공급업체는 일반적으로 비즈니스 또는 조직입니다.
참고: 장소 API는 공급업체를 '검색 전용' 객체로만 지원합니다. 공급업체를 공급업체에 제출하는 것은 지원되는 사용 사례가 아닙니다.
예제
다음 예는 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.