-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathstruct.go
75 lines (70 loc) · 1.97 KB
/
struct.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
package gobaidumap
// 为百度 API 返回的 JSON 创建结构体
// StructGEOToAddress GEO到地址
type StructGEOToAddress struct {
// Status 状态码
Status int64 `json:"status"`
// Result
Result struct {
Business string `json:"business"`
// FormattedAddress 格式化地址
FormattedAddress string `json:"formatted_address"`
AddressComponent struct {
City string `json:"city"`
District string `json:"district"`
Province string `json:"province"`
Street string `json:"street"`
} `json:"addressComponent"`
Pois []*geoToAddressPois `json:"pois"`
} `json:"result"`
Msg string `json:"msg"`
}
type geoToAddressPois struct {
Addr string `json:"addr"`
Cp string `json:"cp"`
Distance string `json:"distance"`
Name string `json:"name"`
PoiType string `json:"poiType"`
Point []struct {
X float64 `json:"x"`
Y float64 `json:"y"`
} `json:"point"`
Tel string `json:"tel"`
UID string `json:"uid"`
Zip string `json:"zip"`
}
// StructAddressToGEO 地址到 GEO 坐标 结构体
type StructAddressToGEO struct {
Status int64 `json:"status"`
Result struct {
Location struct {
Lng float64 `json:"lng"`
Lat float64 `json:"lat"`
} `json:"location"`
Precise int64 `json:"precise" `
Confidence int64 `json:"confidence" `
Level string `json:"level" `
} `json:"result"`
Msg string `json:"msg"`
}
// StructIPToAddress IP 到 地址
type StructIPToAddress struct {
Address string `json:"address"`
Content struct {
Address string `json:"address"`
AddressDetail struct {
City string `json:"city"`
CityCode int64 `json:"city_code"`
District string `json:"district"`
Province string `json:"province"`
Street string `json:"street"`
StreetNumber string `json:"street_number"`
Point struct {
X string `json:"x"`
Y string `json:"y"`
} `json:"point"`
} `json:"address_detail"`
} `json:"content"`
Status int64 `json:"status"`
Message string `json:"message"`
}