0

BlackBerry 10 で 1 つのアプリを開発しています。デバイスの位置を緯度、経度で取得し、住所を取得する必要があります。blackberry docs サンプル アプリを使用しましたが、非常に複雑です。どうすればいいのか教えてください。または、緯度と経度を取得するための簡単なコードを提供してください。

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 に答える