> For the complete documentation index, see [llms.txt](https://xplat.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xplat.gitbook.io/docs/xplat.device.geolocation/positionchangedeventargs.md).

# PositionChangedEventArgs

> Namespace: XPlat.Device.Geolocation

Provides data for the PositionChanged event.

```csharp
public class PositionChangedEventArgs
```

## Supported platforms

| Platform        | Version    |
| --------------- | ---------- |
| .NET Standard   | 2.0        |
| Xamarin.Android | 9.0        |
| Xamarin.iOS     | 1.0        |
| UWP             | 10.0.16299 |

## Constructors

### PositionChangedEventArgs(Geoposition)

#### Parameters

**position (Geoposition)**

The location data associated with the PositionChanged event.

### PositionChangedEventArgs(Windows.Devices.Geolocation.PositionChangedEventArgs) - Windows

#### Parameters

**eventArgs (Windows.Devices.Geolocation.PositionChangedEventArgs)**

The Windows PositionChangedEventArgs.

### PositionChangedEventArgs(Windows.Devices.Geolocation.Geoposition) - Windows

#### Parameters

**position (Windows.Devices.Geolocation.Geoposition)**

The Windows Geoposition.

### PositionChangedEventArgs(Android.Locations.Location) - Android

#### Parameters

**location (Android.Locations.Location)**

The Android Location.

### PositionChangedEventArgs(CoreLocation.CLLocation) - iOS

#### Parameters

**location (CoreLocation.CLLocation)**

The iOS CLLocation.

## Properties

### Position

Gets the location data associated with the PositionChanged event.

```csharp
public Geoposition Position { get; }
```
