namespace Yw.WinFrmUI
{
///
///
///
public class MapSetSimpleMarkerCallBackObj : CallBackObj, IMapSetSimpleMarkerEvents
{
///
/// 设置标记事件
///
public event Action SetMarkerEvent;
///
/// 设置标记
///
public void SetMarker(string json)
{
var marker = JsonHelper.Json2Object(json);
this.SetMarkerEvent?.Invoke(marker);
}
}
}