-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmaps.googleapis.com-maps-api.js
More file actions
68 lines (63 loc) · 957 Bytes
/
Copy pathmaps.googleapis.com-maps-api.js
File metadata and controls
68 lines (63 loc) · 957 Bytes
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
var google = {
maps: {
Animation: function () {
return {
DROP: function () {
}
};
},
OverlayView: function () {
},
Marker: function () {
return {
setMap: function () {
}
};
},
InfoWindow: function () {
return {
setContent: function (string) {
}
};
},
LatLng: function (lat, lng) {
return [lat, lng];
},
LatLngBounds: function () {
return {
extend(lat, lng) {
}
};
},
event: {
addListener: function () {
}
},
Map: function (obj) {
return {
setCenter: function () {
},
fitBounds: function () {
}
};
},
MapTypeId: { ROADMAP: true },
places: {
AutocompleteService: function () {
},
PlacesService: function (obj) {
return {
PlacesServiceStatus: {
OK: true
},
textSearch: function (query) {
return [];
},
nearbySearch: function (query) {
return [];
}
};
}
}
}
};