1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package archive
- // PoiObj str
- type PoiObj struct {
- POI string `json:"poi"`
- Type int32 `json:"type"`
- Addr string `json:"address"`
- Title string `json:"title"`
- ShowTitle string `json:"show_title"`
- AdInfo *AdInfo `json:"ad_info"`
- Ancestors []*Ancestor `json:"ancestors"`
- Distance float64 `json:"distance"`
- ShowDistrance string `json:"show_distance"`
- Location *Location `json:"location"`
- }
- // AdInfo str
- type AdInfo struct {
- Nation string `json:"nation"`
- Provin string `json:"province"`
- Distri string `json:"district"`
- City string `json:"city"`
- }
- // Ancestor str
- type Ancestor struct {
- POI string `json:"poi"`
- Type int32 `json:"type"`
- }
- // Location str
- type Location struct {
- Lat float64 `json:"lat"`
- Lng float64 `json:"lng"`
- }
- // NeedPoi fn
- func NeedPoi(s string) (needPOI int) {
- if (s == PlatformAndroid) ||
- (s == PlatformIOS) ||
- (s == PlatformH5) {
- needPOI = 1
- }
- return
- }
- // NeedVote fn
- func NeedVote(s string) (needVote int) {
- if (s == PlatformAndroid) ||
- (s == PlatformIOS) ||
- (s == PlatformWeb) ||
- (s == PlatformH5) {
- needVote = 1
- }
- return
- }
|