Skip to content

Commit

Permalink
fixed double array coordinate
Browse files Browse the repository at this point in the history
  • Loading branch information
aluksidadi committed Jun 2, 2017
1 parent 8c6b262 commit 9458d3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geo_json.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package hypertrack

type GeoJSON struct {
Type GeoJSONType `json:"type"`
Coordinates []Coordinate `json:"coordinates"`
Type GeoJSONType `json:"type"`
Coordinates Coordinate `json:"coordinates"`
}

type GeoJSONType float64
type GeoJSONType string

const (
GeoJSONTypePoint = AvailabilityStatus("Point")
Expand Down

0 comments on commit 9458d3c

Please sign in to comment.