Display your location history on the map.
Use case
You can track device location history and display it as lines and points on the map. The history can be used to visualize how the user moved through the world, to retrace their steps, or to create new feature geometry. An unmapped trail, for example, could be added to the map using this technique.
How to use the sample
Click 'Start tracking' to start tracking your location, which will appear as points on the map. A line will connect the points for easier visualization. Click 'Stop tracking' to stop updating the location history. This sample uses a simulated data source to allow the sample to be useful on desktop/non-mobile devices. To track a user's real position, use the SystemLocationDataSource instead.
How it works
- If necessary, request location permission from the operating system.
- Create a graphics overlay to show each point and another graphics overlay for displaying the route line.
- Create a
SimulatedLocationDataSourceand initialize it with a polyline. Start theSimulatedLocationDataSourceto begin receiving location updates.
- NOTE: To track a user's real position, use
SystemLocationDataSourceinstead.
- Subscribe to the
LocationChangedevent to handle location updates. - Every time the location updates, store that location, display a point on the map, and recreate the route line.
Relevant API
- Location.Position
- LocationDataSource
- LocationDataSource.LocationChanged
- LocationDataSource.UpdateLocation
- LocationDisplay.AutoPanMode
- LocationDisplay.DataSource
- LocationDisplay.IsEnabled
- MapView.LocationDisplay
- SimulatedLocationDataSource
About the data
A custom set of points is used to create a Polyline and initialize a SimulatedLocationDataSource. This simulated location data source enables easier testing and allows the sample to be used on devices without an actively updating GPS signal.
Tags
bread crumb, breadcrumb, GPS, history, movement, navigation, real-time, trace, track, trail
Sample Code
<UserControl
x:Class="ArcGIS.UWP.Samples.ShowLocationHistory.ShowLocationHistory"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<Button x:Name="LocationTrackingButton"
Content="Start tracking"
IsEnabled="False"
HorizontalAlignment="Stretch"
Click="LocationTrackingButton_OnClick" />
</Border>
</Grid>
</UserControl>