Let's create a program that displays Google Maps by following these steps:
- Create a new Qt Widgets Application project and remove the statusBar, menuBar, and mainToolBar.
- Open your project file (.pro) and add the following modules to your project:
QT += core gui webengine webenginewidgets
- Open mainwindow.ui and add a vertical layout to the canvas. Then, select the canvas and click the Lay Out Vertically button on top of the canvas. You will get the following:
- Open mainwindow.cpp and add the following headers to the top of the source code:
#include <QtWebEngineWidgets/QWebEngineView>#include <QtWebEngineWidgets/QWebEnginePage> ...