geo-smart-system/model/tile38subobject.go

15 lines
322 B
Go
Raw Normal View History

2019-10-19 16:38:38 +00:00
package model
type Tile38SubObject struct {
Type string `json:"type"`
Coordinates []float64 `json:"coordinates"`
}
func (tile38SubObject Tile38SubObject) Lng() float64 {
return tile38SubObject.Coordinates[0]
}
func (tile38SubObject Tile38SubObject) Lat() float64 {
return tile38SubObject.Coordinates[1]
}