constants.json
4.44 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"ACCEPTED_CONFIG_KEYS": {
"encode_polylines": "boolean",
"google_client_id": "string",
"google_channel": "string",
"key": "string",
"proxy": "string",
"secure": "boolean",
"stagger_time": "number"
},
"ACCEPTED_PARAMS": {
"place-search-nearby": {
"keyword": "string",
"language": "string",
"location": "string",
"maxprice": "number",
"minprice": "number",
"name": "string",
"opennow": "boolean",
"pagetoken": "string",
"radius": "number",
"rankby": "string",
"sensor": "string",
"types": "string"
},
"place-search-text": {
"location": "string",
"radius": "string",
"language": "string",
"maxprice": "number",
"minprice": "number",
"opennow": "boolean",
"pagetoken": "string",
"sensor": "string",
"type": "string",
"types": "string",
"zagatselected": "string",
"query": "string"
},
"place-details": {
"placeid": "string",
"extensions": "string",
"language": "string"
},
"place-autocomplete": {
"input": "string",
"offset": "number",
"location": "string",
"radius": "number",
"language": "string",
"types": "string",
"components": "string"
},
"geocode": {
"address": "string",
"components": "string",
"bounds": "string",
"language": "string",
"region": "string"
},
"reverse-geocode": {
"latlng": "string",
"place_id": "string",
"result_type": "string",
"language": "string",
"location_type": "string"
},
"distance-matrix": {
"origins": "string",
"destinations": "string",
"mode": "string",
"language": "string",
"avoid": "string",
"units": "string",
"departure_time": "date",
"arrival_time": "date",
"traffic_model": "string"
},
"directions": {
"origin": "string",
"destination": "string",
"mode": "string",
"waypoints": "string",
"alternatives": "boolean",
"avoid": "string",
"language": "string",
"region": "string",
"units": "string",
"departure_time": "date",
"arrival_time": "date",
"traffic_model": "string"
},
"elevation": {
"locations": "string",
"path": "string",
"samples": "string"
},
"static-map": {
"center": "string",
"zoom": "number",
"size": "string",
"scale": "number",
"format": "string",
"maptype": "string",
"language": "string",
"region": "string",
"markers": "array",
"path": "array",
"visible": "string",
"style": "array"
},
"timezone": {
"location": "string",
"timestamp": "number",
"language": "string"
},
"street-view": {
"location": "string",
"pano": "string",
"size": "string",
"heading": "number",
"fov": "number",
"pitch": "number"
}
},
"MAX_REQUEST_LENGTHS": {
"directions": 2048,
"distance-matrix": 2048,
"elevation": -1,
"geocode": 2048,
"place-details": 2048,
"place-search-nearby": 2048,
"place-search-text": 2048,
"place-autocomplete": 2048,
"reverse-geocode": 2048,
"static-map": 2048,
"timezone": 2048,
"street-view": 2048
},
"GOOGLEMAPS_ENDPOINTS": {
"directions": "/maps/api/directions/json",
"distance-matrix": "/maps/api/distancematrix/json",
"elevation": "/maps/api/elevation/json",
"geocode": "/maps/api/geocode/json",
"place-details": "/maps/api/place/details/json",
"place-search-nearby": "/maps/api/place/nearbysearch/json",
"place-search-text": "/maps/api/place/textsearch/json",
"place-autocomplete": "/maps/api/place/autocomplete/json",
"reverse-geocode": "/maps/api/geocode/json",
"static-map": "/maps/api/staticmap",
"timezone": "/maps/api/timezone/json",
"street-view": "/maps/api/streetview"
}
}