- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取 QGeoLocation。我的 Qt 版本是 5.7.1,顺便说一下,我在 Debian 上运行它。
我看到了这个帖子 how to get latitude/longitude from one geo address using Qt c++ on windows?
我从 Scheff 的回答中复制并粘贴了有效的解决方案,但仍然没有错误和 0 个位置。这与我的设置/环境有关吗?
这段较短的代码具有相同的效果:
#include <QApplication>
#include <QGeoAddress>
#include <QGeoCodingManager>
#include <QGeoCoordinate>
#include <QGeoLocation>
#include <QGeoServiceProvider>
#include <QtDebug>
int main( int argc, char **argv)
{
QCoreApplication app( argc, argv );
QGeoServiceProvider geoSrv( "osm" );
QGeoCodingManager *geoCoder = geoSrv.geocodingManager();
QGeoAddress addr;
addr.setCountry( "China" );
QGeoCodeReply *geoCode = geoCoder->geocode( addr );
if ( geoCode->error() )
qDebug() << "error";
qDebug() << geoCode->locations().length();
return app.exec();
}
最佳答案
我在遇到同样的问题时发现了您的帖子。对我来说,QGeoServiceProvider 代码突然停止使用 OpenStreetmap。我很快尝试了“这里”的 api,它似乎可以使用完全相同的代码。通过使用 wireshark 进行一些快速检查,我很容易发现问题。
QGeoServiceProvider 尝试通过此 url 连接到 OpenStreetMap api:http://nominatim.openstreetmap.org它通过 HTTP 303 重定向到 https://nominatim.openstreetmap.org .显然,QGeoServiceProvider 无法正确处理此重定向。我通过在 osm.geocoding.host 参数中提供新的 url 来修复它。使用您的代码,这看起来像这样:
#include <QApplication>
#include <QGeoAddress>
#include <QGeoCodingManager>
#include <QGeoCoordinate>
#include <QGeoLocation>
#include <QGeoServiceProvider>
#include <QtDebug>
int main( int argc, char **argv)
{
QCoreApplication app( argc, argv );
//Add this
QMap<QString,QVariant> params;
params["osm.geocoding.host"] = "https://nominatim.openstreetmap.org";
QGeoServiceProvider geoSrv( "osm", params );
QGeoCodingManager *geoCoder = geoSrv.geocodingManager();
QGeoAddress addr;
addr.setCountry( "China" );
QGeoCodeReply *geoCode = geoCoder->geocode( addr );
if ( geoCode->error() )
qDebug() << "error";
qDebug() << geoCode->locations().length();
return app.exec();
}
希望这对您有所帮助!
关于c++ - QGeoCodingManager 没有错误但没有结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50548492/
我正在尝试获取 QGeoLocation。我的 Qt 版本是 5.7.1,顺便说一下,我在 Debian 上运行它。 我看到了这个帖子 how to get latitude/longitude fr
我是一名优秀的程序员,十分优秀!