The task is simple. It is necessary to draw the background in the form of a map (it is possible to scale the map - approximation / removal) and it is also necessary to place objects that change their location in time. Information on the card should be updated at a specified time with a period of seconds and above. What tools are best to use?

  • I found in the Qt package installation an example of "minimal map" that uses QT + = location and also import QtQuick 2.0 import QtQuick.Window 2.0 import QtLocation 5.6 import QtPositioning 5.6 But there is no knowledge of using QtQuick. Is it possible to fasten the usual Qt c ++ code to such a project in order to place objects on such a map? - Valentin
  • QWidgets and QtQuick.Window do not mix in the normal way, it is better not to even begin - Pavel Gridin
  • I did not understand - Valentine
  • Qt consists of two APIs, the old one based on QWidgets and the new one, the invention of QtQuick nokia, you cannot use both in one program. I decided that the words "regular Qt c ++ code" mean QWidgets - Pavel Gridin

0