-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgoogle-maps-3.externs.js
More file actions
129 lines (104 loc) · 2.23 KB
/
google-maps-3.externs.js
File metadata and controls
129 lines (104 loc) · 2.23 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
* @fileoverview Contiene la definición de componentes externos
* @author Alan Reyes (kg.designer@gmail.com)
* @externs
*/
var google;
google.maps;
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.Map = function() {};
google.maps.Map.prototype.mapTypes;
google.maps.Map.prototype.setOptions = function() {};
/** @nosideeffects */
google.maps.Map.prototype.getMapTypeId = function () {};
google.maps.Map.prototype.panTo = function (coords) {};
/** @nosideeffects */
google.maps.Map.prototype.getDiv = function() {};
/** @nosideeffects */
google.maps.Map.prototype.getBounds = function() {};
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.MarkerImage = function(url, size, origin, anchor) {};
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.Size = function(width, height) {};
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.Point = function(x, y) {};
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.LatLng = function(lat, lng) {};
/**
* Crea un Mapa de Google
* @param {google.maps.LatLng} sw
* @param {google.maps.LatLng} ne
* @constructor
*/
google.maps.LatLngBounds = function(sw, ne) {};
/**
* @param {google.maps.LatLngBounds} other
* @returns {Boolean}
* @nosideeffects
*/
google.maps.LatLngBounds.prototype.intersects = function(other) {
}
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.ImageMapType = function() {};
google.maps.event;
google.maps.event.addListener = function() {};
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.InfoWindow = function() {};
/**
* Crea un Mapa de Google
* @enum {string}
*/
google.maps.Animation = {
'DROP': 'drop'
};
/**
* Crea un Mapa de Google
* @constructor
*/
google.maps.Marker = function() {};
google.maps.Marker.prototype.setMap = function(map) {};
google.maps.ControlPosition = {
'DEFAULT': 0,
'HORIZONTAL_BAR': 1,
'DROPDOWN_MENU': 2
};
google.maps.MapTypeControlStyle = {
'BOTTOM': 11,
'BOTTOM_CENTER': 11,
'BOTTOM_LEFT': 10,
'BOTTOM_RIGHT': 12,
'LEFT': 5,
'LEFT_BOTTOM': 6,
'LEFT_CENTER': 4,
'LEFT_TOP': 5,
'Ll': 13,
'RIGHT': 7,
'RIGHT_BOTTOM': 9,
'RIGHT_CENTER': 8,
'RIGHT_TOP': 7,
'TOP': 2,
'TOP_CENTER': 2,
'TOP_LEFT': 1,
'TOP_RIGHT': 3
};