From 5adb391970ab95fc3597bf81a33161a32f2283d8 Mon Sep 17 00:00:00 2001 From: Haritha Mohan <110641567+haritha-mohan@users.noreply.github.com> Date: Thu, 3 Nov 2022 15:59:21 -0400 Subject: [PATCH] [MapKit] Fix capitalization mistake in type MKReverseGeocoder (#16572) Fixes #16485 --- src/mapkit.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/mapkit.cs b/src/mapkit.cs index df73539b75..8ee3859789 100644 --- a/src/mapkit.cs +++ b/src/mapkit.cs @@ -894,8 +894,14 @@ namespace MapKit { [Protocolize] MKReverseGeocoderDelegate Delegate { get; set; } - [Export ("coordinate")] +#if !XAMCORE_5_0 + [Obsolete ("Use the 'Coordinate' property instead.")] + [Wrap ("Coordinate", IsVirtual = true)] CLLocationCoordinate2D coordinate { get; } +#endif + + [Export ("coordinate")] + CLLocationCoordinate2D Coordinate { get; } [Export ("start")] void Start ();