Hands-On GUI Programming with C++ and Qt5学习笔记 -MapView

在这里插入图片描述

Qt Location 模块为开发人员提供了对地理编码和导航信息的访问。它还可以允许用户执行需要从服务器或用户设备检索数据的地点搜索。

目前,Qt 的地图视图不支持 C++,仅支持 QML。这意味着我们只能使用 QML 脚本来更改与视觉相关的任何内容——显示地图、添加标记等;另一方面,我们可以使用模块提供的 C++ 类从数据库或服务提供者获取信息,然后通过 QML 将其显示给用户。

除了位置模块,我们还添加了 qml 和 quickwidgets 模块,这是下一节中地图显示小部件所需的。 这就是我们在项目中启用 Qt Location 模块所需要做的全部工作。 接下来,我们将继续将地图显示小部件添加到我们的项目中。

还有一个重要的功能叫做 Geo Routing Request,它是一组功能,可以帮助您绘制从 A 点到 B 点的路线(通常是最短路线)。此功能需要服务提供商; 在这种情况下,我们将使用 Open Street Map (OSM),因为它是完全免费的。

请注意,OSM 是一个在线协作项目,这意味着如果您所在地区没有人将路线数据提供给 OSM 服务器,那么您将无法获得准确的结果。 或者,您还可以使用付费服务,例如 Mapbox 或 ESRI。

mapview.qml

import QtQuick 2.0
import QtLocation 5.3
import QtPositioning 5.0

Item
{
    id: window
	//我们创建一个 Plugin 对象并将其命名为 osm (Open Street Map)
    Plugin
    {
        id: mapPlugin
        name: "osm"
    }

    function addMarker(name, latitude, longitude)
    {
        //我们首先通过加载 marker.qml 文件来创建一个组件        
        var component = Qt.createComponent("qrc:///qml/marker.qml")
        //然后,我们通过调用 createObject() 从组件创建了一个对象/项目
        //在 createObject() 函数中,我们将 window 对象作为其父对象,并将其位置设置为 addMarker() 函数提供的坐标
        //我们可以通过为每个标记添加一个文本标签
        var item = component.createObject(window, { coordinate: QtPositioning.coordinate(latitude, longitude), labelText: name })
        //然后通过调用 map.addMapItem() 将标记添加到地图
        //该函数必须在地图创建并准备好显示后调用,这意味着我们只能在 Component.onCompleted 事件被触发后调用它
        map.addMapItem(item)
    }

    //我们只更改了一些属性,例如颜色、形状和边框宽度。 完成后,让我们打开 mapview.qml 并定义一些添加形状的函数
    //这些函数与 addMarker() 函数非常相似,只是它接受稍后传递给 createObject()函数的不同参数
    function addCircle(latitude, longitude, radius, color, borderWidth)
    {
        var component = Qt.createComponent("qrc:///qml/circle.qml")
        var item = component.createObject(window, { center: QtPositioning.coordinate(latitude, longitude), radius: radius, color: color, borderWidth: borderWidth })
        map.addMapItem(item)
    }

    function addRectangle(startLat, startLong, endLat, endLong, color, borderWidth)
    {
        var component = Qt.createComponent("qrc:///qml/rectangle.qml")
        var item = component.createObject(window, { topLeft: QtPositioning.coordinate(startLat, startLong), bottomRight: QtPositioning.coordinate(endLat, endLong), color: color, borderWidth: borderWidth })
        map.addMapItem(item)
        //我们将项目添加到地图以进行渲染
        //每当我们想要创建一个新的位置标记时,我们只需要调用这个 addMarker() 函数
    }

    function addPolygon(path, color, borderWidth)
    {
        var component = Qt.createComponent("qrc:///qml/polygon.qml")
        var item = component.createObject(window, { path: path, color: color, borderWidth: borderWidth })
        map.addMapItem(item)
    }
	//然后我们创建一个 Map 对象并将插件应用到它的 plugin 属性
    Map
    {
        id: map
        anchors.fill: parent
        plugin: mapPlugin
        //我们还将起始坐标设置为 (40.7264175,-73.99735),它位于纽约的某个地方
        center: QtPositioning.coordinate(40.7264175,-73.99735)
        //除此之外,默认缩放级别设置为 14
        zoomLevel: 14

        Component.onCompleted:
        {
            // Use QML to add markers to the map
            //让我们通过调用 addMarker() 三次来创建三个不同的标记
            addMarker("Restaurant", 40.7274175,-73.99835)
            addMarker("My Home", 40.7276432,-73.98602)
            addMarker("School", 40.7272175,-73.98935)

            addCircle(40.7274175,-73.99835, 250, "green", 3);
            addRectangle(40.7274175,-73.99835, 40.7376432, -73.98602, "red", 2)
            var path = [{ latitude: 40.7324281, longitude: -73.97602 },
                        { latitude: 40.7396432, longitude: -73.98666 },
                        { latitude: 40.7273266, longitude: -73.99835 },
                        { latitude: 40.7264281, longitude: -73.98602 }];
            addPolygon(path, "blue", 3);
        }
    }
}

marker.qml

import QtQuick 2.0
import QtQuick.Controls 2.0
import QtLocation 5.3
//我们首先添加了一个将用作标记图像的图像对象。
//我们创建一个 MapQuickItem 对象,它将作为标记本身
MapQuickItem
{
    id: marker
    //我们还必须将标记图像的锚点设置为图像的中心底部
    anchorPoint.x: marker.width / 4
    anchorPoint.y: marker.height
    //向 MapQuickItem 对象添加一个名为 labelText 的自定义属性
    property string labelText
    //将标记图像设置为 MapQuickItem 对象的 sourceItem
    //我们创建了一个 Item 对象来将多个对象组合在一起
    sourceItem: Item
    {
        Image
        {
            id: icon
            source: "qrc:///images/map-marker-icon.png"
            //于原始图像确实很大,我们必须通过将 sourceSize 属性设置为 50x50 来调整其大小,因为这是标记尖端所在的位置
            sourceSize.width: 50
            sourceSize.height: 50
        }
		//创建了一个 Rectangle 对象作为标签背景
        Rectangle
        {
            id: tag
            anchors.centerIn: label
            width: label.width + 4
            height: label.height + 2
            color: "black"
        }
		//我们可以通过为每个标记添加一个文本标签
        //一个 Label 对象作为文本
        Label
        {
            id: label
            anchors.centerIn: parent
            anchors.horizontalCenterOffset: 20
            anchors.verticalCenterOffset: -12
            font.pixelSize: 16
            //Label 对象的 text 属性将链接到 MapQuickItem 对象的 labelText 属性
            //我们可以向 addMarker() 函数添加另一个输入以设置 labelText 属性
            text: labelText
            color: "white"
        }
    }
}

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

#include <QQuickItem>
#include <QQuickView>

#include <QDebug>
//要使用 Qt Location 模块获取用户的位置
#include <QGeoPositionInfo>
#include <QGeoPositionInfoSource>

#include <QGeoServiceProvider>
#include <QGeoRoutingManager>
#include <QGeoRouteRequest>
#include <QGeoRouteReply>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
	Q_OBJECT

public:
	explicit MainWindow(QWidget *parent = 0);
	~MainWindow();

private:
	Ui::MainWindow *ui;

private slots:
	void positionUpdated(const QGeoPositionInfo &info);

	void routeCalculated(QGeoRouteReply *reply);
	void routeError(QGeoRouteReply *reply, QGeoRouteReply::Error error, const QString &errorString);
};

#endif // MAINWINDOW_H

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
	QMainWindow(parent),
	ui(new Ui::MainWindow)
{
	ui->setupUi(this);

	// Get user's position (only work on mobile)
	/*QGeoPositionInfoSource *source = QGeoPositionInfoSource::createDefaultSource(this);
	if (source)
	{
		connect(source, SIGNAL(positionUpdated(QGeoPositionInfo)),
				this, SLOT(positionUpdated(QGeoPositionInfo)));
		source->startUpdates();
	}*/

	// Use C++ to add marker to the map
    //前面函数的第一个参数是我们要从中调用函数的对象
     //在本例中,它是地图视图widget的根对象(mapview.qml 中的 Item 对象)
     //接下来,我们要告诉我们要调用哪个函数名称,它是 addMarker() 函数
     //第三个参数是信号槽系统用来调用这个方法的连接类型
      //我们使用 Q_ARG 宏来指示数据的类型和值
        
     //我们将让它成为默认设置,即 Qt::AutoConnection。 其余的是 addMarker() 函数所需的参数
	//QMetaObject::invokeMethod(qobject_cast<QObject*>(ui->quickWidget->rootObject()), "addMarker", Qt::AutoConnection, Q_ARG(QVariant, "Testing"), Q_ARG(QVariant, 40.7274175), Q_ARG(QVariant, -73.99835));

	// Routing request
   //构造函数方法中创建一个服务提供者对象。 我们将使用 OSM 服务,因此我们将在启动 QGeoServiceProvider 类时放置首字母缩略词“osm”
    //之后,我们将从刚刚创建的服务提供者对象中获取路由管理器的指针
	QGeoServiceProvider* serviceProvider = new QGeoServiceProvider("osm");
	QGeoRoutingManager* routingManager = serviceProvider->routingManager();

    //然后,将来自路由管理器的finished() 信号和error() 信号与我们刚刚定义的槽函数连接起来
    //当请求成功时服务提供者有回复,或者请求失败并返回错误消息时,这些槽函数将被触发。 
	connect(routingManager, SIGNAL(finished(QGeoRouteReply*)), this, SLOT(routeCalculated(QGeoRouteReply*)));
	connect(routingManager, SIGNAL(error(QGeoRouteReply*,QGeoRouteReply::Error,QString)), this, SLOT(routeError(QGeoRouteReply*,QGeoRouteReply::Error,QString)));
	//MainWindow 构造函数方法中启动一个地理路由请求并将其发送给服务提供者
	QGeoRouteRequest request(QGeoCoordinate(40.675895,-73.9562151), QGeoCoordinate(40.6833154,-73.987715));
	routingManager->calculateRoute(request);
}

MainWindow::~MainWindow()
{
	delete ui;
}

void MainWindow::positionUpdated(const QGeoPositionInfo &info)
{
	qDebug() << "Position updated:" << info;
}
//QGeoRouteReply 指针包含服务提供者在请求成功时发送的路由信息。 有时它带有多个路由,因此在示例中,我们只获取第一个路由并通过 Qt 的应用程序输出窗口显示它。 或者,您可以使用这些坐标来绘制路径或沿路线设置标记动画。
void MainWindow::routeCalculated(QGeoRouteReply *reply)
{
	qDebug() << "Route Calculated";

	if (reply->routes().size() != 0)
	{
		// There could be more than 1 path
		// But we only get the first route
		QGeoRoute route = reply->routes().at(0);

		qDebug() << route.path();
	}

	reply->deleteLater();
}
//对于 routeError() 槽函数,我们只输出服务提供者发送的错误字符串
void MainWindow::routeError(QGeoRouteReply *reply, QGeoRouteReply::Error error, const QString &errorString)
{
	qDebug() << "Route Error" << errorString;

	reply->deleteLater();
}

除了在地图上添加标记外,我们还可以在地图上绘制不同类型的形状来指示感兴趣的区域或用作地理围栏,每当目标进入或离开该形状覆盖的区域时都会发出警告。地理围栏是一种多边形形状,用于在地图上为基于位置的服务定义感兴趣的区域或虚拟地理边界。通常,地理围栏用于在设备进入和/或退出地理围栏时触发警报。使用地理围栏的一个很好的例子是,当您需要购物提醒时,您可以在超市周围绘制一个地理围栏,并随地理围栏附上购物清单。当您(和您的手机)进入地理围栏区域时,您会在手机上收到一条通知,提醒您购买什么。

为了在地图视图小部件上绘制形状,我们将为每种类型的形状创建更多 QML 文件并将它们添加到程序的资源中:

circle.qml

import QtQuick 2.0
import QtLocation 5.3
MapCircle
{
    property int borderWidth
    border.width: borderWidth
}

rectangle.qml

import QtQuick 2.0
import QtLocation 5.3

MapRectangle
{
    property int borderWidth

    border.width: borderWidth
}

polygon.qml

import QtQuick 2.0
import QtLocation 5.3

MapPolygon
{
    property int borderWidth

    border.width: borderWidth
}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Create visually appealing and feature-rich applications by using Qt 5 and the C++ language Qt 5, the latest version of Qt, enables you to develop applications with complex user interfaces for multiple targets. It provides you with faster and smarter ways to create modern UIs and applications for multiple platforms. This book will teach you to design and build graphical user interfaces that are functional, appealing, and user-friendly. In the initial part of the book, you will learn what Qt 5 is and what you can do with it. You will explore the Qt Designer, discover the different types of widgets generally used in Qt 5, and then connect your application to the database to perform dynamic operations. Next, you will be introduced to Qt 5 chart which allows you to easily render different types of graphs and charts and incorporate List View Widgets in your application. You will also work with various Qt modules, like QtLocation, QtWebEngine, and the networking module through the course of the book. Finally, we will focus on cross-platform development with QT 5 that enables you to code once and run it everywhere, including mobile platforms. By the end of this book, you will have successfully learned about high-end GUI applications and will be capable of building many more powerful, cross-platform applications. What You Will Learn Implement tools provided by Qt 5 to design a beautiful GUI Understand different types of graphs and charts supported by Qt 5 Create a web browser using the Qt 5 WebEngine module and web view widget Connect to the MySQL database and display data obtained from it onto the Qt 5 GUI Incorporate the Qt 5 multimedia and networking module in your application Develop Google Map-like applications using Qt 5’s location module Discover cross-platform development by exporting the Qt 5 application to different platforms Uncover the secrets behind debugging Qt 5 and C++ applications
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值