Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2287 | - | 1 | |
2 | namespace GMap.NET |
||
3 | { |
||
4 | using GMap.NET.MapProviders; |
||
5 | |||
6 | public delegate void PositionChanged(PointLatLng point); |
||
7 | |||
8 | public delegate void TileLoadComplete(long ElapsedMilliseconds); |
||
9 | public delegate void TileLoadStart(); |
||
10 | |||
11 | public delegate void TileCacheComplete(); |
||
12 | public delegate void TileCacheStart(); |
||
13 | public delegate void TileCacheProgress(int tilesLeft); |
||
14 | |||
15 | public delegate void MapDrag(); |
||
16 | public delegate void MapZoomChanged(); |
||
17 | public delegate void MapTypeChanged(GMapProvider type); |
||
18 | |||
19 | public delegate void EmptyTileError(int zoom, GPoint pos); |
||
20 | } |