From b8f4af969d2f56d9ee1ecdfa8639a692fff154d5 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Wed, 17 Apr 2024 07:20:21 +0200 Subject: [PATCH] Update Location.cs --- MapControl/Shared/Location.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MapControl/Shared/Location.cs b/MapControl/Shared/Location.cs index e2e916df..59b6c761 100644 --- a/MapControl/Shared/Location.cs +++ b/MapControl/Shared/Location.cs @@ -49,7 +49,7 @@ namespace MapControl public override string ToString() { - return string.Format(CultureInfo.InvariantCulture, "{0:F6},{1:F6}", Latitude, Longitude); + return string.Format(CultureInfo.InvariantCulture, "{0},{1}", Latitude, Longitude); } ///