poi.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package archive
  2. // PoiObj str
  3. type PoiObj struct {
  4. POI string `json:"poi"`
  5. Type int32 `json:"type"`
  6. Addr string `json:"address"`
  7. Title string `json:"title"`
  8. ShowTitle string `json:"show_title"`
  9. AdInfo *AdInfo `json:"ad_info"`
  10. Ancestors []*Ancestor `json:"ancestors"`
  11. Distance float64 `json:"distance"`
  12. ShowDistrance string `json:"show_distance"`
  13. Location *Location `json:"location"`
  14. }
  15. // AdInfo str
  16. type AdInfo struct {
  17. Nation string `json:"nation"`
  18. Provin string `json:"province"`
  19. Distri string `json:"district"`
  20. City string `json:"city"`
  21. }
  22. // Ancestor str
  23. type Ancestor struct {
  24. POI string `json:"poi"`
  25. Type int32 `json:"type"`
  26. }
  27. // Location str
  28. type Location struct {
  29. Lat float64 `json:"lat"`
  30. Lng float64 `json:"lng"`
  31. }
  32. // NeedPoi fn
  33. func NeedPoi(s string) (needPOI int) {
  34. if (s == PlatformAndroid) ||
  35. (s == PlatformIOS) ||
  36. (s == PlatformH5) {
  37. needPOI = 1
  38. }
  39. return
  40. }
  41. // NeedVote fn
  42. func NeedVote(s string) (needVote int) {
  43. if (s == PlatformAndroid) ||
  44. (s == PlatformIOS) ||
  45. (s == PlatformWeb) ||
  46. (s == PlatformH5) {
  47. needVote = 1
  48. }
  49. return
  50. }