https://github.com/golang/geo 使用golang / geo / s2查找给定区域中是否存在latlng
rect := s2.RectFromLatLng(s2.LatLng{0.0, 0.0})
rect = rect.AddPoint(s2.LatLng{2.0, 2.0})
isThere := rect.ContainsLatLng(s2.LatLng{1.0, 1.0})
golang中字符串拼接方法 += fmt.sprintf append buffer.WriteString copy 效率:copy > append > buf.WriteString > += > fmt.Sprintf 所以请慎用fmt.Sprinf 和 +=