Hi Guys,

Is there a way of using the QML MAP element without having access to the internet? I am thinking of a way to use the integrated OVI Maps (that can be downloaded before). By using some sort of API…

Could this be even done, or we are obliged in using the internet?

I am having a look at this example: http://doc.qt.nokia.com/qtmobility-1...mapviewer.html

I deploy my application on a E7 device and the map loads nicely if a have the Wi-Fi enabled and connected to a wireless network. But when I turn the Wi-Fi off and start the application I have the error:
Qt Code:
  1. [Qt Message] "Network session error."
To copy to clipboard, switch view to plain text mode 

In the example, the Map element is defined like:

Qt Code:
  1. Map {
  2. id: map
  3. plugin : Plugin {
  4. name : "nokia"
  5. }
  6. size.width: parent.width
  7. size.height: parent.height
  8. zoomLevel: 7
  9. .
  10. .
  11. .
  12. }
To copy to clipboard, switch view to plain text mode 

Do I need to change the plugin to a different one? But which?

Regards,
wladek