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
26
27
28
29
30
| namespace PBS.WinFrmUI.Hydro
| {
| /// <summary>
| ///
| /// </summary>
| public interface IMapSetPlaceMarkerContainer : IWebBrowerContainer, IMapSetPlaceMarkerEvents
| {
| /// <summary>
| ///
| /// </summary>
| MapSetPlaceMarkerCallBackObj CallBackObj { get; }
|
| /// <summary>
| /// 加载marker
| /// </summary>
| Task<bool> LoadMarker(Yw.Model.Map.Marker marker);
|
| /// <summary>
| /// 加载MapBounds
| /// </summary>
| Task<bool> LoadMapBounds(Yw.Model.Map.Point southWest,Yw.Model.Map.Point northEast);
|
| /// <summary>
| /// 查询地址
| /// </summary>
| Task SearchAddress();
|
|
| }
| }
|
|