Qt定位QML类型

QtPositioning全局对象提供了用于在QML中处理基于位置的类型的实用函数。更多...

导入声明import QtPositioning

方法

详细描述

import QtPositioning

Item {
    property var coordinate: QtPositioning.coordinate(-27.5, 153.1)
}

方法文档

geocircle circle()

构建一个无效的地圓。

另见geocircle.


geocircle circle(coordinate center, real radius)

构建一个以center为中心、半径为radius米的地圓。


point coordToMercator(coordinate coord)

将坐标coord转换为墨卡托坐标并返回。

另请参阅mercatorToCoord


coordinate coordinate()

构建一个无效坐标。


coordinate coordinate(real latitude, real longitude, real altitude)

使用指定的latitudelongitude和可选的altitude构建一个坐标。必须同时有效latitudelongitude,否则返回无效坐标。

另请参阅coordinate


coordinate mercatorToCoord(point mercator)

mercator坐标转换为经纬度坐标。

另请参阅coordToMercator


geopath path()

构建一个空地理路径。

另请参阅geopath


geopath path(list<coordinate> coordinates, real width)

从坐标和宽度构建地理路径。

另请参阅geopath


geopolygon polygon()

构建一个空多边形。

另请参阅geopolygon


geopolygon polygon(list<coordinate> coordinates)

从坐标构建多边形。

另请参阅geopolygon


geopolygon polygon(list<coordinate> perimeter, list<list<coordinate>> holes)

从坐标构建多边形,包括边界和内部空洞。

另请参阅geopolygon


georectangle rectangle()

构建一个无效的地元矩形。

另请参阅georectangle


georectangle rectangle(coordinate center, real width, real height)

构建以center为中心,宽度为width度,高度为height度的地元矩形。

另请参阅georectangle


georectangle rectangle(coordinate topLeft, coordinate bottomRight)

构建一个地元矩形,其左上角位于topLeft,右下角位于bottomRight

另请参阅georectangle


地理矩形 rectangle(列表<坐标> coordinates)

从坐标列表中构建一个地理矩形,返回的列表包含所有可能的最小坐标。

另请参阅georectangle


地理形状 shape()

构建一个无效的地理形状。

另请参阅 地理形状.


地理圆 shapeToCircle(地理形状 shape)

shape 转换为地理圆。

另见geocircle.


地理路径 shapeToPath(地理形状 shape)

shape 转换为地理路径。

另请参阅geopath


地理多边形 shapeToPolygon(地理形状 shape)

shape 转换为多边形。

另请参阅geopolygon


地理矩形 shapeToRectangle(地理形状 shape)

shape 转换为地理矩形。

另请参阅georectangle


© 2024 Qt公司科技有限公司。本文档贡献的文档版权属于其各自的拥有者。本文档根据自由软件基金会发布的GNU自由文档许可协议第1.3版提供。Qt及其相关标志是芬兰及全球其他地区的Qt公司科技有限公司的商标。所有其他商标均为其各自拥有者的财产。