heremaps / here-sdk-examples

Android, iOS and Flutter example apps for the HERE SDK 4.x (Lite Edition, Explore Edition, Navigate Edition)
https://developer.here.com/products/here-sdk
Apache License 2.0
169 stars 135 forks source link

Failed to read here/nokia map version. #328

Closed AzimST closed 6 days ago

AzimST commented 1 month ago

When using here maps that I want to use in my qt application, I get this error and the screen does not come up. how can i solve it image image My QML Code ` import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Window 2.15 // Here Maps import import QtLocation 5.15 import QtPositioning 5.15

Window { visible: true width: 640 height: 480 title: qsTr("Here Maps Example")

Plugin {
    id: hereMaps
    name: "here"

    // Your HERE API key

    PluginParameter {
        name: "here.app_id"
        value: "e*******************U"
    }

    PluginParameter {
        name: "here.token"
        value: "K***********************w"
    }
}

Map {
    anchors.fill: parent
    plugin: hereMaps
    center: QtPositioning.coordinate(38.4501, 27.1777)
    zoomLevel: 14
}

} `

My errors

QML debugging is enabled. Only use this in a safe environment.
No proxy parameter specified.
Failed to read here/nokia map version.
    QGeoTileRequestManager: Failed to fetch tile (9430,6293,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9430,6292,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9429,6292,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9427,6293,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9429,6293,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9428,6292,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9429,6294,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9427,6294,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9430,6294,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9428,6293,14) 5 times, giving up. Last error message was: 'Host requires authentication'
QGeoTileRequestManager: Failed to fetch tile (9427,6292,14) 5 times, giving up. Last error message was: 'Host requires authentication'
AzimST commented 1 month ago

By the way my qt version 5.15.2

HERE-SDK-Support-Team commented 6 days ago

Hi @AzimST

unfortunately, we cannot help with Qt questions. This is not directly supported by the HERE SDK. You can try to reach out to our in-house support team: https://www.here.com/contact?intref=dev_docum

Hope this helps. Thanks.