Hi my qml application started showing a nokia watermark where I am using the map element.
Debug output gave me this.
***************************************************************************
[Qt Message] Qt Location requires usage of app_id and token parameters obtained from:
[Qt Message] https://api.forum.nokia.com/ovi-api/ui/registration
[Qt Message] For more information about app_id and token please consult:
[Qt Message] http://doc.qt.nokia.com/qtmobility-l...e-nokia-plugin ***************************************************************************
So I went and got a token and app_id and am including them in my map as follows
property string mappingToken : "TOKEN FROM NOKIA HERE"
property string mappingAppId : "APP ID FROM NOKIA HERE"
Map {
id: map
connectivityMode: Map.OfflineMode
plugin : Plugin {
name : "nokia"
parameters: [
PluginParameter {
name: "app_id"
value: mappingAppId
},
PluginParameter {
name: "token"
value: mappingToken
}
]
}
anchors.fill: parent
zoomLevel: 10
size.widtharent.width
size.heightarent.height
center: Coordinate {
latitude: 13.536
longitude: 27.536
}
}
Unfortunately now the map does not load at all as I am getting these messages
[Qt Message] setupServiceInfo "Error downloading http://1.maptile.lbs.ovi.com/maptile...nfo?output=xml - server replied: Forbidden"
Am I missing something. Please any help will be appreciated.
Oh I also tried changing the names of the plugin parameters to mapping.app_id and mapping.token respectively with no love...

arent.width



