Questions regarding map & location
-
I have just started work on my first app, and the main window basically just contains a fullscreen QML
Map
. When I run the app viaclickable desktop
, the map tiles are rendered and the map is functional.When I run it on my volla phone via
clickable --ssh x.x.x.x ...
the map however is not displayed, and instead I get a blank screen.Do I specify somewhere additional dependencies or something?
-
@s710 Hello.
You might need add correspondant apparmor permissions:https://docs.ubports.com/en/latest/appdev/platform/apparmor.html
If you are reading the location probably location but if you are rendering maps in a webview, or need internet access, need networking and webview.
You might see the errors in the log
clickable --ssh xxxx logs
-
Thanks, will check it out.
-
I added:
{ "policy_groups": ["location", "networking"], "policy_version": 16.04 }
And now the map works as expected. Thanks again.