amay077 / Xamarin.Forms.GoogleMaps

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

PinAdding, PinAdded, PinRemoving, PinRemoved event for Map #532

Open amay077 opened 6 years ago

amay077 commented 6 years ago

SUMMARY

Provides chance of customize pins.

DETAILS

Quick example for these below:

map.PinAdding += (sender, PinAddingEventArgs args) => {
  Pin pin = args.Pin;
  var nativeMarker = pin.NativeObject;  // you can access native marker object.
};

Consideration

PLATFORMS