import QtQuick 2.12 import QtQuick.Window 2.12 import com.Geocept.Tour 1.0 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") GCTourPlayer { id: tourPlayerTrace anchors.fill: parent drawTypes: [ DrawType { type: GCTourPlayer.DrawTypeBackward; color: '#D9004D9E' }, DrawType { type: GCTourPlayer.DrawTypeWorkRegion; color: '#E67814A0' } ] } }