0

我正在 BlackBerry 10 中开发一个应用程序,我需要在其中获取设备位置的纬度、经度,然后想要获取地址。我已经浏览了 blackberry docs 示例应用程序,但它非常复杂。谁能告诉我该怎么做?或者为我提供简单的代码,比如获取 latitude 和 longitude 。

4

1 回答 1

0

检查下面的代码。

void App::positionUpdated(QGeoPositionInfo geoPositionInfo) {

    if (geoPositionInfo.isValid()) {
        // We've got the position. No need to continue the listening.
        locationDataSource->stopUpdates();

        // Save the position information into a member variable
        myPositionInfo = geoPositionInfo;

        // Get the current location as latitude and longitude
        QGeoCoordinate geoCoordinate = geoPositionInfo.coordinate();
        qreal latitude = geoCoordinate.latitude();
        qreal longitude = geoCoordinate.longitude();

        qDebug()<< QString("Latitude: %1 Longitude: %2").arg(latitude).arg(longitude);



    }

}

void App::startGPS() {

    qDebug() << " << starting GPS >>";

    // Obtain the location data source if it is not obtained already
    if (!locationDataSource) {
        locationDataSource = QGeoPositionInfoSource::createDefaultSource(this);
        // Whenever the location data source signals that the current
        // position is updated, the positionUpdated function is called
        connect(locationDataSource, SIGNAL(positionUpdated(QGeoPositionInfo)),this, SLOT(positionUpdated(QGeoPositionInfo)));

        // Start listening for position updates
        locationDataSource->startUpdates();
    }
}

只需在默认构造函数类中调用startGPS()方法。

欲了解更多信息,你可以去这里

于 2013-11-13T07:13:58.290 回答