8 lines
176 B
Go
8 lines
176 B
Go
package models
|
|
|
|
// Coordinates represents WGS84 geographical coordiantes
|
|
type Coordinates struct {
|
|
Latitude float32 `json:"latitude"`
|
|
Longitude float32 `json:"longitude"`
|
|
}
|