forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIControl.cs
39 lines (38 loc) · 1.35 KB
/
IControl.cs
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
31
32
33
34
35
36
37
38
39
using System;
using System.Drawing;
using GMap.NET.Internals;
using GMap.NET.MapProviders;
using GMap.NET.ObjectModel;
namespace GMap.NET.WindowsForms
{
public interface IControl
{
void UpdateRouteLocalPosition(GMapRoute obj);
void UpdatePolygonLocalPosition(GMapPolygon gMapPolygon);
void UpdateMarkerLocalPosition(GMapMarker gMapMarker);
RectLatLng ViewArea { get; }
bool PolygonsEnabled { get; set; }
bool RoutesEnabled { get; set; }
PointLatLng Position { get; set; }
bool MarkersEnabled { get; set; }
bool IsMouseOverMarker { get; set; }
bool HoldInvalidation { get; set; }
Internals.Core Core { get; }
bool IsMouseOverPolygon { get; set; }
bool IsMouseOverRoute { get; set; }
int Width { get; set; }
GMapProvider MapProvider { get; set; }
int Height { get; set; }
double Zoom { get; set; }
float Bearing { get; set; }
bool IsDragging { get; }
ObservableCollectionThreadSafe<GMapOverlay> Overlays { get; }
void RestoreCursorOnLeave();
void Refresh();
void Invalidate();
GPoint FromLatLngToLocal(PointLatLng rectLocationTopLeft);
PointLatLng FromLocalToLatLng(int p0, int p1);
Point PointToClient(Point mousePosition);
object Invoke(Delegate p0);
}
}