本文整理汇总了C++中QGeoCoordinate函数的典型用法代码示例。如果您正苦于以下问题:C++ QGeoCoordinate函数的具体用法?C++ QGeoCoordinate怎么用?C++ QGeoCoordinate使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了QGeoCoordinate函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: QGeoCoordinate
QGeoCoordinate TrackRecorder::trackPointAt(int index) {
if(index < m_points.length()) {
return m_points.at(index).coordinate();
} else {
return QGeoCoordinate();
}
}
示例2: QGeoCoordinate
QGeoCoordinate OpenstreetmapMapProvider::pixelToCoord(const QPoint& point,
int zoomLevel) const
{
return QGeoCoordinate(tiley2lat(point.y() / (double)TILE_DIMENSION,
zoomLevel),
tilex2long(point.x() / (double)TILE_DIMENSION, zoomLevel));
}
示例3: QGeoCoordinate
QGeoCoordinate QGraphicsGeoMap::center() const
{
if (d_ptr->mapData)
return d_ptr->mapData->center();
return QGeoCoordinate();
}
示例4: calculatePeripheralPoints
static void calculatePeripheralPoints(QList<QGeoCoordinate> &path, const QGeoCoordinate ¢er, qreal distance, int steps)
{
// Calculate points based on great-circle distance
// Calculation is the same as GeoCoordinate's atDistanceAndAzimuth function
// but tweaked here for computing multiple points
// pre-calculate
qreal latRad = qgeocoordinate_degToRad(center.latitude());
qreal lonRad = qgeocoordinate_degToRad(center.longitude());
qreal cosLatRad = std::cos(latRad);
qreal sinLatRad = std::sin(latRad);
qreal ratio = (distance / (qgeocoordinate_EARTH_MEAN_RADIUS * 1000.0));
qreal cosRatio = std::cos(ratio);
qreal sinRatio = std::sin(ratio);
qreal sinLatRad_x_cosRatio = sinLatRad * cosRatio;
qreal cosLatRad_x_sinRatio = cosLatRad * sinRatio;
for (int i = 0; i < steps; ++i) {
qreal azimuthRad = 2 * M_PI * i / steps;
qreal resultLatRad = std::asin(sinLatRad_x_cosRatio
+ cosLatRad_x_sinRatio * std::cos(azimuthRad));
qreal resultLonRad = lonRad + std::atan2(std::sin(azimuthRad) * cosLatRad_x_sinRatio,
cosRatio - sinLatRad * std::sin(resultLatRad));
qreal lat2 = qgeocoordinate_radToDeg(resultLatRad);
qreal lon2 = qgeocoordinate_radToDeg(resultLonRad);
if (lon2 < -180.0) {
lon2 += 360.0;
} else if (lon2 > 180.0) {
lon2 -= 360.0;
}
path << QGeoCoordinate(lat2, lon2, center.altitude());
}
}
示例5: QGraphicsView
MapView::MapView(QWidget *parent) :
QGraphicsView(parent)
{
QGraphicsScene* scene = new QGraphicsScene(this);
setScene(scene);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setInteractive(true);
QGeoServiceProvider *serviceProvider = new QGeoServiceProvider("nokia");
QGeoMappingManager *manager = serviceProvider->mappingManager();
geo_map = new Map(manager);
connect(geo_map, SIGNAL(markerClicked(QStringList)), SIGNAL(markerClicked(QStringList)));
geo_map->setMapType(QGraphicsGeoMap::StreetMap);
geo_map->setCenter(QGeoCoordinate(0.0, 0.0));
geo_map->setZoomLevel(5);
scene->addItem(geo_map);
track = new QGeoMapPolylineObject;
QPen pen(Qt::red);
pen.setWidth(3);
track->setPen(pen);
track->setZValue(1);
setMouseTracking(true);
}
示例6: if
QGeoCoordinate QGeoProjection::mercatorToCoord(const QDoubleVector2D &mercator)
{
const double pi = M_PI;
double fx = mercator.x();
double fy = mercator.y();
if (fy < 0.0)
fy = 0.0;
else if (fy > 1.0)
fy = 1.0;
double lat;
if (fy == 0.0)
lat = 90.0;
else if (fy == 1.0)
lat = -90.0;
else
lat = (180.0 / pi) * (2.0 * std::atan(std::exp(pi * (1.0 - 2.0 * fy))) - (pi / 2.0));
double lng;
if (fx >= 0) {
lng = realmod(fx, 1.0);
} else {
lng = realmod(1.0 - realmod(-1.0 * fx, 1.0), 1.0);
}
lng = lng * 360.0 - 180.0;
return QGeoCoordinate(lat, lng, 0.0);
}
示例7: Q_D
/*!
Translates this geo rectangle by \a degreesLatitude northwards and \a
degreesLongitude eastwards.
Negative values of \a degreesLatitude and \a degreesLongitude correspond to
southward and westward translation respectively.
If the translation would have caused the geo rectangle to cross a pole the
geo rectangle will be translated until the top or bottom edge of the geo rectangle
touches the pole but not further.
*/
void QGeoRectangle::translate(double degreesLatitude, double degreesLongitude)
{
// TODO handle dlat, dlon larger than 360 degrees
Q_D(QGeoRectangle);
double tlLat = d->topLeft.latitude();
double tlLon = d->topLeft.longitude();
double brLat = d->bottomRight.latitude();
double brLon = d->bottomRight.longitude();
if ((tlLat != 90.0) || (brLat != -90.0)) {
tlLat += degreesLatitude;
brLat += degreesLatitude;
}
if ( (tlLon != -180.0) || (brLon != 180.0) ) {
tlLon += degreesLongitude;
brLon += degreesLongitude;
}
if (tlLon < -180.0)
tlLon += 360.0;
if (tlLon > 180.0)
tlLon -= 360.0;
if (brLon < -180.0)
brLon += 360.0;
if (brLon > 180.0)
brLon -= 360.0;
if (tlLat > 90.0)
tlLat = 90.0;
if (tlLat < -90.0)
tlLat = -90.0;
if (brLat > 90.0)
brLat = 90.0;
if (brLat < -90.0)
brLat = -90.0;
d->topLeft = QGeoCoordinate(tlLat, tlLon);
d->bottomRight = QGeoCoordinate(brLat, brLon);
}
示例8: azimuth
/*!
Returns the coordinate that is reached by traveling \a distance meters
from the current coordinate at \a azimuth (or bearing) along a great-circle.
There is an assumption that the Earth is spherical for the purpose of this
calculation.
The altitude will have \a distanceUp added to it.
Returns an invalid coordinate if this coordinate is invalid.
*/
QGeoCoordinate QGeoCoordinate::atDistanceAndAzimuth(qreal distance, qreal azimuth, qreal distanceUp) const
{
if (!isValid())
return QGeoCoordinate();
double resultLon, resultLat;
QGeoCoordinatePrivate::atDistanceAndAzimuth(*this, distance, azimuth,
&resultLon, &resultLat);
if (resultLon > 180.0)
resultLon -= 360.0;
else if (resultLon < -180.0)
resultLon += 360.0;
double resultAlt = d->alt + distanceUp;
return QGeoCoordinate(resultLat, resultLon, resultAlt);
}
示例9: qInfo
void
TestEphemeride::test_Ephemeride()
{
Ephemeride ephemeride;
ephemeride.set_date(QDate(2016, 1, 1));
ephemeride.set_coordinate(QGeoCoordinate(48.87, 2.67));
qInfo() << ephemeride.sunrise() << ephemeride.solar_noon() << ephemeride.sunset();
}
示例10: c1
void tst_QGeoCircle::areaComparison_data()
{
QTest::addColumn<QGeoShape>("area");
QTest::addColumn<QGeoCircle>("circle");
QTest::addColumn<bool>("equal");
QGeoCircle c1(QGeoCoordinate(10.0, 0.0), 10.0);
QGeoCircle c2(QGeoCoordinate(20.0, 10.0), 20.0);
QGeoRectangle b(QGeoCoordinate(10.0, 0.0), QGeoCoordinate(0.0, 10.0));
QTest::newRow("default constructed") << QGeoShape() << QGeoCircle() << false;
QTest::newRow("c1 c1") << QGeoShape(c1) << c1 << true;
QTest::newRow("c1 c2") << QGeoShape(c1) << c2 << false;
QTest::newRow("c2 c1") << QGeoShape(c2) << c1 << false;
QTest::newRow("c2 c2") << QGeoShape(c2) << c2 << true;
QTest::newRow("b c1") << QGeoShape(b) << c1 << false;
}
示例11: atDistanceAndAzimuth_data
void atDistanceAndAzimuth_data()
{
QTest::addColumn<QGeoCoordinate>("origin");
QTest::addColumn<qreal>("distance");
QTest::addColumn<qreal>("azimuth");
QTest::addColumn<QGeoCoordinate>("result");
QTest::newRow("invalid coord")
<< QGeoCoordinate()
<< qreal(1000.0)
<< qreal(10.0)
<< QGeoCoordinate();
if (sizeof(qreal) == sizeof(double)) {
QTest::newRow("brisbane -> melbourne")
<< BRISBANE
<< qreal(1374820.1618767744)
<< qreal(211.1717286649)
<< MELBOURNE;
QTest::newRow("london -> new york")
<< LONDON
<< qreal(5570538.4987236429)
<< qreal(288.3388804508)
<< NEW_YORK;
QTest::newRow("north pole -> south pole")
<< NORTH_POLE
<< qreal(20015109.4154876769)
<< qreal(180.0)
<< SOUTH_POLE;
} else {
QTest::newRow("brisbane -> melbourne")
<< BRISBANE
<< qreal(1374820.1618767744)
<< qreal(211.1717286649)
<< QGeoCoordinate(-37.8142515084775, 144.963170622944);
QTest::newRow("london -> new york")
<< LONDON
<< qreal(5570538.4987236429)
<< qreal(288.3388804508)
<< QGeoCoordinate(40.7145220608416, -74.0071216045375);
QTest::newRow("north pole -> south pole")
<< NORTH_POLE
<< qreal(20015109.4154876769)
<< qreal(180.0)
<< QGeoCoordinate(-89.9999947369857, -90.0);
}
}
示例12: setCenter
/*!
Sets the height of this geo rectangle in degrees to \a degreesHeight.
If \a degreesHeight is less than 0.0 or if this geo rectangle is invalid
this function does nothing. To set up the values of an invalid
geo rectangle based on the center, width and height you should use
setCenter() first in order to make the geo rectangle valid.
If the change in height would cause the geo rectangle to cross a pole
the height is adjusted such that the geo rectangle only touches the pole.
This change is done such that the center coordinate is still at the
center of the geo rectangle, which may result in a geo rectangle with
a smaller height than might otherwise be expected.
If \a degreesHeight is greater than 180.0 then 180.0 is used as the height.
*/
void QGeoRectangle::setHeight(double degreesHeight)
{
if (!isValid())
return;
if (degreesHeight < 0.0)
return;
if (degreesHeight >= 180.0) {
degreesHeight = 180.0;
}
Q_D(QGeoRectangle);
double tlLon = d->topLeft.longitude();
double brLon = d->bottomRight.longitude();
QGeoCoordinate c = center();
double tlLat = c.latitude() + degreesHeight / 2.0;
double brLat = c.latitude() - degreesHeight / 2.0;
if (tlLat > 90.0) {
brLat = 2* c.latitude() - 90.0;
tlLat = 90.0;
}
if (tlLat < -90.0) {
brLat = -90.0;
tlLat = -90.0;
}
if (brLat > 90.0) {
tlLat = 90.0;
brLat = 90.0;
}
if (brLat < -90.0) {
tlLat = 2 * c.latitude() + 90.0;
brLat = -90.0;
}
d->topLeft = QGeoCoordinate(tlLat, tlLon);
d->bottomRight = QGeoCoordinate(brLat, brLon);
}
示例13: qMin
QGeoCoordinate TrackRecorder::trackCenter() {
// Keep also current position in view
qreal minLon = qMin(m_minLon, (qreal)m_currentPosition.longitude());
qreal maxLon = qMax(m_maxLon, (qreal)m_currentPosition.longitude());
qreal minLat = qMin(m_minLat, (qreal)m_currentPosition.latitude());
qreal maxLat = qMax(m_maxLat, (qreal)m_currentPosition.latitude());
return QGeoCoordinate((minLat+maxLat)/2, (minLon+maxLon)/2);
}
示例14: addTestData_info
void addTestData_info()
{
QTest::addColumn<QGeoPositionInfo>("info");
QTest::newRow("invalid") << QGeoPositionInfo();
QTest::newRow("coord") << QGeoPositionInfo(QGeoCoordinate(-27.3422,150.2342), QDateTime());
QTest::newRow("datetime") << QGeoPositionInfo(QGeoCoordinate(), QDateTime::currentDateTime());
QList<QGeoPositionInfo::Attribute> attributes = tst_qgeopositioninfo_getAttributes();
QList<qreal> values = tst_qgeopositioninfo_qrealTestValues();
for (int i=0; i<attributes.count(); i++) {
for (int j=0; j<values.count(); j++) {
QTest::newRow(qPrintable(QString("Attribute %1 = %2").arg(attributes[i]).arg(values[j])))
<< infoWithAttribute(attributes[i], values[j]);
}
}
}
示例15: georectangle
/*
This property holds the width of this georectangle (in degrees).
*/
void GeoRectangleValueType::setWidth(double width)
{
QGeoRectangle r = v;
if (!r.isValid())
r.setCenter(QGeoCoordinate(0.0, 0.0));
r.setWidth(width);
v = r;
}