lqml/examples/meshtastic/qml/ext/Map.qml

91 lines
2.1 KiB
QML

import QtQuick 2.15
import QtLocation 5.15
import QtPositioning 5.15
import "." as Ext
Item {
anchors.fill: parent
Component {
id: mapComponent
Map {
id: map
objectName: "map"
anchors.fill: parent
plugin: mapPlugin
zoomLevel: 14
function coordinate(pos) {
return QtPositioning.coordinate(pos[0], pos[1])
}
function setCenter(pos) {
center = coordinate(pos)
}
function showMarker(n, nodeNum, name, customName = "") {
var pos = Lisp.call("loc:position*", nodeNum)
if (pos) {
var marker = markers.itemAt(n)
marker.radioName = name
marker.customName = customName
marker.coordinate = coordinate(pos)
marker.visible = true
}
}
function updatePositions(myNum, myName, group) {
var n = 0
showMarker(n++, myNum, myName)
for (var i = 0; i < group.count; i++) {
var data = group.get(i)
showMarker(n++, data.nodeNum, data.radioName, data.customName)
}
}
Plugin {
id: mapPlugin
name: "osm" // Open Street Map
// for downloading tiles
PluginParameter {
name: "osm.mapping.cache.directory"
value: Lisp.call("loc:tile-path")
}
// for offline tiles (from cache)
PluginParameter {
name: "osm.mapping.offline.directory"
value: Lisp.call("loc:tile-path")
}
// number tiles (instead of MB)
PluginParameter {
name: "osm.mapping.cache.disk.cost_strategy"
value: "unitary"
}
// max number cached/offline tiles
PluginParameter {
name: "osm.mapping.cache.disk.size"
value: 10000
}
// local tile provider (no API key needed)
PluginParameter {
name: "osm.mapping.providersrepository.address"
value: Lisp.call("loc:tile-provider-path")
}
}
Ext.Markers {
id: markers
}
}
}
Loader {
id: mapLoader
objectName: "map_loader"
anchors.fill: parent
sourceComponent: mapComponent
active: false
}
}