mirror of
https://gitee.com/winc-link/hummingbird.git
synced 2025-04-21 17:02:43 +00:00
13 lines
221 B
Go
13 lines
221 B
Go
package dtos
|
|
|
|
import "fmt"
|
|
|
|
type Gps struct {
|
|
Longitude float64 `json:"longitude"`
|
|
Latitude float64 `json:"latitude"`
|
|
}
|
|
|
|
func (gps Gps) ToLocation() string {
|
|
return fmt.Sprintf("%f,%f", gps.Latitude, gps.Longitude)
|
|
}
|