You can enter a Google map (for Android or iOS) in the Xamarin.Forms view.
Example in Android:
public class AndroidMapRenderer : ViewRenderer { protected override void OnElementChanged(ElementChangedEventArgs<View> e) { base.OnElementChanged(e); var mapView = new Android.Gms.Maps.MapView(Context); SetNativeControl(mapView); } }
This method is a "custom renderer".
Read this data:
source share