You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returned by drangend listener {"latLng":{"lat":-23.703340477909656,"lng":-46.869214057922356},"domEvent":{"isTrusted":true},"pixel":{"x":108,"y":-50}}
// I didn't find this class on [BlazorGoogleMaps](https://github.com/rungwiroon/BlazorGoogleMaps)
public class DomEvent
{
public bool IsTrusted { get; set; }
}
// Class for AddListener dragend
public class DragEndEvent
{
public LatLngLiteral LatLng { get; set; }
public Point Pixel { get; set; }
public DomEvent DomEvent { get; set; }
}
How use... await marker.AddListener<DragEndEvent>("dragend", (e) => OnDragEndDistribution(e));
Returned by drangend listener
{"latLng":{"lat":-23.703340477909656,"lng":-46.869214057922356},"domEvent":{"isTrusted":true},"pixel":{"x":108,"y":-50}}
How use...
await marker.AddListener<DragEndEvent>("dragend", (e) => OnDragEndDistribution(e));
The text was updated successfully, but these errors were encountered: