forked from xamarin/GoogleApisForiOSComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnums.cs
71 lines (59 loc) · 976 Bytes
/
Enums.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
using System.Runtime.InteropServices;
using CoreLocation;
using ObjCRuntime;
namespace Google.Maps
{
[Native]
public enum MapViewType : ulong
{
/** Basic maps. The default. */
Normal = 1,
/** Satellite maps with no labels. */
Satellite,
/** Terrain maps. */
Terrain,
/** Satellite maps with a transparent label overview. */
Hybrid,
/** No maps, no labels. Display of traffic data is not supported. */
None
}
[Native]
public enum FrameRate : ulong
{
PowerSave,
Conservative,
Maximum,
}
[Native]
public enum MapViewPaddingAdjustmentBehavior : ulong
{
Always,
Automatic,
Never
}
[Native]
public enum MarkerAnimation : ulong
{
None = 0,
Pop
}
[Native]
public enum GeocoderErrorCode : long
{
InvalidCoordinate = 1,
ErrorInternal
}
[Native]
public enum PanoramaSource : ulong {
Default = 0,
Outside
}
[Native]
public enum LengthKind : ulong
{
Geodesic,
Rhumb,
Projected
}
}