C

Qt Quick Ultralite map example

// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
import QtQuick

Rectangle {
    id: root

    MapContainer {
        width: 480
        height: 480
        clip: true
        anchors.centerIn: parent
    }
}