22 lines
314 B
Go
22 lines
314 B
Go
|
package tiles
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/paulmach/orb/geojson"
|
||
|
)
|
||
|
|
||
|
type TiledRouteType int
|
||
|
|
||
|
const (
|
||
|
TiledRouteRegular TiledRouteType = iota
|
||
|
TiledRoutePunctual
|
||
|
)
|
||
|
|
||
|
type TiledRoute struct {
|
||
|
ID string
|
||
|
Type TiledRouteType
|
||
|
Route *geojson.FeatureCollection
|
||
|
DepartureDate time.Time
|
||
|
}
|