-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
442 lines (387 loc) · 14.2 KB
/
types.go
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
package golamap
type NearBySearch struct {
Layers string
Location string
Types string
Radius string
Strictbounds string
WithCentroid string
Limit string
}
type MapImage struct {
Stylename string
Imagewidth string
Imageheight string
Imageformat string
Path string
Markers []string
}
type MapImageBounded struct {
Stylename string
Minxstr string
Minystr string
Maxxstr string
Maxystr string
Imagewidth string
Imageheight string
Imageformat string
Markers []string
Path string
}
type MapImageCenter struct {
Stylename string
Longitude string
Latitude string
Zoomlevel string
Imagewidth string
Imageheight string
Imageformat string
Markers []string
Path string
}
type TextSearch struct {
Input string
Location string
Radius string
Types string
Size string
}
type Directions struct {
GeocodedWaypoints []GeocodedWaypoint `json:"geocoded_waypoints"`
Routes []Route `json:"routes"`
Status string `json:"status"`
SourceFrom string `json:"source_from"`
}
type GeocodedWaypoint struct {
GeocoderStatus string `json:"geocoder_status"`
PlaceID string `json:"place_id"`
Types []string `json:"types"`
}
// Step represents a single step in the route.
type Step struct {
Distance int `json:"distance"`
ReadableDistance string `json:"readable_distance"`
Duration int `json:"duration"`
ReadableDuration string `json:"readable_duration"`
StartLocation Location `json:"start_location"`
EndLocation Location `json:"end_location"`
Instructions string `json:"instructions"`
Maneuver string `json:"maneuver"`
BearingBefore int `json:"bearing_before"`
BearingAfter int `json:"bearing_after"`
}
// Location represents geographical coordinates.
type Location struct {
Lat float64 `json:"lat"`
Lng float64 `json:"lng"`
}
type Leg struct {
Distance int `json:"distance"`
ReadableDistance string `json:"readable_distance"`
Duration int `json:"duration"`
ReadableDuration string `json:"readable_duration"`
EndAddress string `json:"end_address"`
EndLocation Location `json:"end_location"`
StartAddress string `json:"start_address"`
StartLocation Location `json:"start_location"`
Steps []Step `json:"steps"`
}
type Route struct {
Bounds Bounds `json:"bounds"`
Copyrights string `json:"copyrights"`
Legs []Leg `json:"legs"`
OverviewPolyline string `json:"overview_polyline"`
TravelAdvisory string `json:"travel_advisory"`
Summary string `json:"summary"`
Warnings []string `json:"warnings"`
WaypointOrder []int `json:"waypoint_order"`
}
// Bounds represents the geographical bounds of the route.
type Bounds struct {
Southwest Location `json:"southwest"`
Northeast Location `json:"northeast"`
}
type DistanceMatrix struct {
Rows []Row `json:"rows"`
Status string `json:"status"`
}
type Row struct {
Elements []Element `json:"elements"`
}
type Element struct {
Duration int `json:"duration"`
Distance int `json:"distance"`
Polyline string `json:"polyline"`
Status string `json:"status"`
}
type SnapToRoad struct {
Status string `json:"status"`
SnappedPoints []SnappedPoint `json:"snapped_points"`
}
type SnappedPoint struct {
Location Location `json:"location"`
OriginalIndex int `json:"original_index"`
SnappedType string `json:"snapped_type"`
}
type NearestRoad struct {
Status string `json:"status"`
Results []Result `json:"results"`
}
type Result struct {
Lat float64 `json:"lat"`
Lng float64 `json:"lng"`
Distance float64 `json:"distance"`
OriginalIndex int `json:"originalIndex"`
Status string `json:"status"`
}
type AutoComplete struct {
Predictions []Prediction `json:"predictions"`
InfoMessages []string `json:"info_messages"`
ErrorMessage string `json:"error_message"`
Status string `json:"status"`
}
type Prediction struct {
Reference string `json:"reference"`
Types []string `json:"types"`
MatchedSubstrings []MatchedSubstring `json:"matched_substrings"`
DistanceMeters int `json:"distance_meters"`
Terms []Term `json:"terms"`
StructuredFormatting AutoCompleteStructuredFormatting `json:"structured_formatting"`
Description string `json:"description"`
Geometry Geometry `json:"geometry"`
PlaceID string `json:"place_id"`
}
type MatchedSubstring struct {
Offset int `json:"offset"`
Length int `json:"length"`
}
type Term struct {
Offset int `json:"offset"`
Value string `json:"value"`
}
type AutoCompleteStructuredFormatting struct {
MainText string `json:"main_text"`
SecondaryText string `json:"secondary_text"`
MainTextMatchedSubstrings []MatchedSubstring `json:"main_text_matched_substrings"`
}
type Geometry struct {
Location Location `json:"location"`
}
type PlaceDetail struct {
HtmlAttributions []interface{} `json:"html_attributions"`
Resultplacedetail Resultplacedetail `json:"result"`
InfoMessages []string `json:"info_messages"`
ErrorMessage string `json:"error_message"`
Status string `json:"status"`
}
type Resultplacedetail struct {
AddressComponents []AddressComponent `json:"address_components"`
FormattedAddress string `json:"formatted_address"`
Geometryplacedetail Geometryplacedetail `json:"geometry"`
PlaceID string `json:"place_id"`
Reference string `json:"reference"`
BusinessStatus string `json:"business_status"`
FormattedPhoneNumber string `json:"formatted_phone_number"`
Icon string `json:"icon"`
IconBackgroundColor string `json:"icon_background_color"`
IconMaskBaseURI string `json:"icon_mask_base_uri"`
InternationalPhoneNumber string `json:"international_phone_number"`
Name string `json:"name"`
OpeningHours OpeningHours `json:"opening_hours"`
PlusCode PlusCode `json:"plus_code"`
Rating float64 `json:"rating"`
Reviews []Review `json:"reviews"`
Types []string `json:"types"`
Layer []string `json:"layer"`
URL string `json:"url"`
UserRatingsTotal int `json:"user_ratings_total"`
UTCOffset int `json:"utc_offset"`
Vicinity string `json:"vicinity"`
Website string `json:"website"`
PriceLevel string `json:"price_level"`
Photos []interface{} `json:"photos"`
AdrAddress string `json:"adr_address"`
}
type AddressComponent struct {
LongName string `json:"long_name"`
ShortName string `json:"short_name"`
Types []string `json:"types"`
}
type Geometryplacedetail struct {
Location Location `json:"location"`
Viewport Viewport `json:"viewport"`
}
type Viewport struct {
Northeast Location `json:"northeast"`
Southwest Location `json:"southwest"`
}
type OpeningHours struct {
OpenNow bool `json:"open_now"`
Periods []OpeningPeriod `json:"periods"`
WeekdayText []string `json:"weekday_text"`
}
type OpeningPeriod struct {
Close OpeningTime `json:"close"`
Open OpeningTime `json:"open"`
}
type OpeningTime struct {
Day int `json:"day"`
Time string `json:"time"`
}
type PlusCode struct {
CompoundCode string `json:"compound_code"`
GlobalCode string `json:"global_code"`
}
type Review struct {
AuthorName string `json:"author_name"`
AuthorURL string `json:"author_url"`
Language string `json:"language"`
ProfilePhotoURL string `json:"profile_photo_url"`
Rating float64 `json:"rating"`
RelativeTimeDescription string `json:"relative_time_description"`
Text string `json:"text"`
Time int64 `json:"time"`
}
type NearBySearchResponse struct {
Predictions []PredictionNearbySearch `json:"predictions"`
InfoMessages []string `json:"info_messages"`
ErrorMessage string `json:"error_message"`
Status string `json:"status"`
}
type PredictionNearbySearch struct {
Description string `json:"description"`
MatchedSubstrings []MatchedSubstring `json:"matched_substrings"`
PlaceID string `json:"place_id"`
Reference string `json:"reference"`
StructuredFormatting StructuredFormatting `json:"structured_formatting"`
Terms []Term `json:"terms"`
Types []string `json:"types"`
Layer []string `json:"layer"`
DistanceMeters int `json:"distance_meters"`
}
type StructuredFormatting struct {
MainText string `json:"main_text"`
MainTextMatchedSubstrings []MatchedSubstring `json:"main_text_matched_substrings"`
SecondaryText string `json:"secondary_text"`
SecondaryTextMatchedSubstrings []MatchedSubstring `json:"secondary_text_matched_substrings"`
}
type TextBySearch struct {
Predictions []PredictionTextBySearch `json:"predictions"`
InfoMessages []string `json:"info_messages"`
ErrorMessage string `json:"error_message"`
Status string `json:"status"`
}
type PredictionTextBySearch struct {
FormattedAddress string `json:"formatted_address"`
Geometry Geometry `json:"geometry"`
PlaceID string `json:"place_id"`
Name string `json:"name"`
Types []string `json:"types"`
}
type ForwardGecode struct {
Status string `json:"status"`
GeocodingResults []GeocodingResult `json:"geocodingResults"`
}
type GeocodingResult struct {
FormattedAddress string `json:"formatted_address"`
Types []string `json:"types"`
Name string `json:"name"`
Geometry GecodeGeometry `json:"geometry"`
AddressComponents []AddressComponent `json:"address_components"`
PlusCode PlusCode `json:"plus_code"`
PlaceID string `json:"place_id"`
Layer []string `json:"layer"`
}
type GecodeGeometry struct {
Location Location `json:"location"`
Viewport Viewport `json:"viewport"`
LocationType string `json:"location_type"`
}
type ReverseGecode struct {
ErrorMessage string `json:"error_message"`
InfoMessages []string `json:"info_messages"`
Results []ReverseGeoResult `json:"results"`
PlusCode PlusCode `json:"plus_code"`
Status string `json:"status"`
}
type ReverseGeoResult struct {
FormattedAddress string `json:"formatted_address"`
Types []string `json:"types"`
Name string `json:"name"`
Geometry ReverseGeometry `json:"geometry"`
AddressComponents []AddressComponent `json:"address_components"`
PlusCode PlusCode `json:"plus_code"`
PlaceID string `json:"place_id"`
Layer []string `json:"layer"`
}
type ReverseGeometry struct {
Location Location `json:"location"`
Viewport Viewport `json:"viewport"`
LocationType string `json:"location_type"`
}
type ArrayOfData struct {
Attribution string `json:"attribution"`
Basename string `json:"basename"`
Bounds []float64 `json:"bounds"`
Center []float64 `json:"center"`
Compression string `json:"compression"`
DataVersion string `json:"data_version"`
Description string `json:"description"`
Format string `json:"format"`
ID string `json:"id"`
MaxZoom int `json:"maxzoom"`
MinZoom int `json:"minzoom"`
Name string `json:"name"`
Tiles []string `json:"tiles"`
Type string `json:"type"`
VectorLayers []VectorLayer `json:"vector_layers"`
TileJSONVersion string `json:"tilejson"`
}
type VectorLayer struct {
ID string `json:"id"`
MaxZoom int `json:"maxzoom"`
MinZoom int `json:"minzoom"`
Fields FieldInfo `json:"fields"`
}
type FieldInfo struct {
Name string `json:"name"`
Status string `json:"status"`
Ref string `json:"ref"`
Class string `json:"class"`
SubClass string `json:"subclass"`
Elevation string `json:"ele"`
}
type VectorMapStyle struct {
Version int `json:"version"`
Name string `json:"name"`
ID string `json:"id"`
URL string `json:"url"`
}
type VectorStyleDetails struct {
ID string `json:"id"`
Version int `json:"version"`
Name string `json:"name"`
Sources map[string]Source `json:"sources"`
Glyphs string `json:"glyphs"`
Layers []Layer `json:"layers"`
}
type Layer struct {
ID string `json:"id"`
Type string `json:"type"`
Source string `json:"source"`
SourceLayer string `json:"source-layer"`
Filter interface{} `json:"filter"` // Using interface{} to handle nested structures
Layout Layout `json:"layout"`
Paint Paint `json:"paint"`
}
type Layout struct {
Visibility string `json:"visibility"`
}
type Paint struct {
FillAntialias bool `json:"fill-antialias"`
FillColor string `json:"fill-color"`
}
type Source struct {
Type string `json:"type"`
URL string `json:"url"`
}