1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| namespace PBS.WinFrmUI.Hydro
| {
| /// <summary>
| /// 简单设置标记事件集
| /// </summary>
| public interface IMapSetPlaceMarkerEvents : IWebBrowerEvents
| {
| /// <summary>
| /// 设置标记事件
| /// </summary>
| event Action<Yw.Model.Map.Marker> SetMarkerEvent;
|
| /// <summary>
| /// 设置地图边界事件
| /// </summary>
| event Action<Yw.Model.Map.Point, Yw.Model.Map.Point> SetMapBoundsEvent;
|
| }
| }
|
|