Hello everyone! I am begginer in fuse and mobile development. I develop my first application using fuse. It is real fantastik tool! I want to inicialize map in my app. In my project file i put this:
{
“Packages”: [
“Fuse.Maps”,
“Fuse”,
“FuseJS”
],
“Includes”: [
“",
"Modules/.js:Bundle”
],
“Android”: {
“Geo”: {
“ApiKey”: “my_key”
}
}
}
In the area where map should show I put this code:
Page ux:Class=“Location”
Router ux:Dependency=“router”
JavaScript File=“SettingsDetails.js”
DockPanel
MapView Latitude=“59.911567” Longitude=“10.741030” Zoom=“10”
MapMarker Latitude=“59.911567” Longitude=“10.741030” Label=“Fuse HQ”
MapView
DockPanel
Page
But instead map i see MapView requires a mobile target. What should i do to see map in fuse tool?