amay077 / Xamarin.Forms.GoogleMaps

Map library for Xamarin.Forms using Google maps API
https://www.nuget.org/packages/Xamarin.Forms.GoogleMaps/
MIT License
545 stars 346 forks source link

ItemsSource BindableProperty definition bug #738

Open LordOfSmiles opened 3 years ago

LordOfSmiles commented 3 years ago

VERSIONS

PLATFORMS

ACTUAL BEHAVIOR

In Xamarin.Forms.GoogleMaps.Map you write first BindableProperty as public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create("IEnumerable", typeof (IEnumerable), typeof (Map), ...);

EXPECTED BEHAVIOR

public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource), typeof (IEnumerable), typeof (Map), ...);