diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png new file mode 100644 index 0000000000..1cad632468 Binary files /dev/null and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png differ diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/dashboard-widgets.md b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/dashboard-widgets.md index 40b2474767..0b7d1a3da5 100644 --- a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/dashboard-widgets.md +++ b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/dashboard-widgets.md @@ -336,6 +336,21 @@ An example of how it is used in a sketch: locationVariable = Location(51.5074, 0.1278); ``` +### Advanced Map + +![Advanced Map Widget](assets/widget-advanced-map.png) + +The advanced map widget allows you to track the location of your cloud-connected device. Using GPS within your project allows the advanced map widget to track where the linked thing has been. This widget not only shows the live location of your device but also lets you specify a time frame to view its location history and the track it produced. + +It can be linked with the **Location** variable. When the location updates the new location will be added to the advanced map widget and a path between the locations will be marked. The path and icon on the map can be customized in the widget settings. + +An example of how it is used in a sketch: + +```arduino +//Location(Latitude, Longitude); +locationVariable = Location(51.5074, 0.1278); +``` + ### Chart ![Chart Widget](assets/widget-chart.png)