1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| namespace Yw.WinFrmUI
| {
| /// <summary>
| /// 设置标记事件集
| /// </summary>
| public interface IMapSetMarkerEvents : IWebBrowerEvents
| {
| /// <summary>
| /// 设置标记事件
| /// </summary>
| event Action<Yw.Model.Map.Marker> SetMarkerEvent;
|
| /// <summary>
| /// 取消绘制标记事件
| /// </summary>
| event Action CancelDrawMarkerEvent;
|
| /// <summary>
| /// 取消编辑标记事件
| /// </summary>
| event Action CancelEditMarkerEvent;
|
|
| }
| }
|
|