Files
services/examples/routing/eta/go/etaFromPointAToPointB.go
2021-09-16 12:52:36 +01:00

24 lines
548 B
Go
Executable File

package example
import (
"fmt"
"github.com/micro/services/clients/go/routing"
"os"
)
// Get the eta for a route from origin to destination. The eta is an estimated time based on car routes
func EtaFromPointAtoPointB() {
routingService := routing.NewRoutingService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := routingService.Eta(&routing.EtaRequest{
Destination: &routing.Point{
Latitude: 52.529407,
Longitude: 13.397634,
},
Origin: &routing.Point{
Latitude: 52.517037,
Longitude: 13.38886,
},
})
fmt.Println(rsp, err)
}