Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2287 | - | 1 | |
2 | namespace GMap.NET |
||
3 | { |
||
4 | using System.Collections.Generic; |
||
5 | |||
6 | /// <summary> |
||
7 | /// geocoding interface |
||
8 | /// </summary> |
||
9 | public interface GeocodingProvider |
||
10 | { |
||
11 | GeoCoderStatusCode GetPoints(string keywords, out List<PointLatLng> pointList); |
||
12 | |||
13 | PointLatLng? GetPoint(string keywords, out GeoCoderStatusCode status); |
||
14 | |||
15 | GeoCoderStatusCode GetPoints(Placemark placemark, out List<PointLatLng> pointList); |
||
16 | |||
17 | PointLatLng? GetPoint(Placemark placemark, out GeoCoderStatusCode status); |
||
18 | |||
19 | // ... |
||
20 | |||
21 | GeoCoderStatusCode GetPlacemarks(PointLatLng location, out List<Placemark> placemarkList); |
||
22 | |||
23 | Placemark ? GetPlacemark(PointLatLng location, out GeoCoderStatusCode status); |
||
24 | } |
||
25 | } |