Skip to content

Commit ed72f21

Browse files
Added advanced map widget section
1 parent 9789649 commit ed72f21

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/dashboard-widgets.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,21 @@ An example of how it is used in a sketch:
336336
locationVariable = Location(51.5074, 0.1278);
337337
```
338338

339+
### Advanced Map
340+
341+
![Advanced Map Widget](assets/widget-advanced-map.png)
342+
343+
The advanced map widget allows you to track the location of your cloud project. Using GPS with your project allows the advanced map widget to track where the linked thing has been. The widget allows you to see the live location of the thing, you can also specify the time frame for the location tracking.
344+
345+
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.
346+
347+
An example of how it is used in a sketch:
348+
349+
```arduino
350+
//Location(Latitude, Longitude);
351+
locationVariable = Location(51.5074, 0.1278);
352+
```
353+
339354
### Chart
340355

341356
![Chart Widget](assets/widget-chart.png)

0 commit comments

Comments
 (0)