From 52d990a89c154f778f8668a46ef393774e426586 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Thu, 14 Mar 2024 19:41:14 +0100 Subject: [PATCH] Update Location.cs --- MapControl/Shared/Location.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MapControl/Shared/Location.cs b/MapControl/Shared/Location.cs index 5102af3f..879832e6 100644 --- a/MapControl/Shared/Location.cs +++ b/MapControl/Shared/Location.cs @@ -15,8 +15,6 @@ namespace MapControl #endif public class Location : IEquatable { - private double latitude; - public Location() { } @@ -27,6 +25,8 @@ namespace MapControl Longitude = longitude; } + private double latitude; + public double Latitude { get => latitude;