1

我正在使用 Qt 在 Android 上运行。我正在制作 qtlocation 地图,我想实时更新我的​​位置。我已经设置了我的 updateInterval: 1(0.001 秒),但 MapQuickItem 仍然移动得太晚了。

PositionSource {
    id: ps
    updateInterval: 500
    active: true
    onPositionChanged: {
        console.log(position.coordinate);
    }
}

Map {
    id: map
    anchors.fill: parent

    plugin: Plugin {
        name: "osm"

        PluginParameter {
            name: "mapboxgl.mapping.items.insert_before"
            value: "road-label-small"
        }

        PluginParameter {
            name: "mapboxgl.access_token"
            value: "myToken"
        }

        PluginParameter {
            name: "mapboxgl.mapping.additional_style_urls"
            value: "Urls"
        }
    }

    MapQuickItem {
        zoomLevel: map.zoomLevel

        sourceItem: Image {
            id: carMarker
            source: "../images/circle.png"
        }

        coordinate: ps.position.coordinate
        anchorPoint.x: carMarker.width / 2
        anchorPoint.y: carMarker.height / 2
    }
}

有没有办法让我实时移动我的标记?

这就是结果: 在此处输入图像描述

或者这个:https ://drive.google.com/file/d/1lLMuyWX4WQYw-L4jdx-sq-xstkjVRyCl/view?usp=sharing

4

0 回答 0