Newer
Older
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import QtQuick 2.3
import QtLocation 5.3
import QtPositioning 5.3
import QGroundControl 1.0
import QGroundControl.Controls 1.0
import QGroundControl.FlightMap 1.0
import QGroundControl.Vehicle 1.0
// Allow custom builds to add visual items associated with the Flight Plan to the map
Item {
property var map ///< Map control to show items on
property bool largeMapView ///< true: map takes up entire view, false: map is in small window
Instantiator {
model: QGroundControl.corePlugin.customMapItems
Item {
property var _customObject
Component.onCompleted: {
var controlUrl = object.url
var component = Qt.createComponent(controlUrl);
_customObject = component.createObject(map, { "customMapObject": object })
if (_customObject) {
map.addMapItem(_customObject)
}
} else {
console.log("Component creation failed", component.errorString())
}
}
}
Component.onDestruction: {
if (_customObject) {
_customObject.destroy()
}
}
}
}
}