mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
25 lines
546 B
Go
Executable File
25 lines
546 B
Go
Executable File
package example
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/micro/services/clients/go/routing"
|
|
)
|
|
|
|
// Retrieve a route as a simple list of gps points along with total distance and estimated duration
|
|
func GpsPointsForAroute() {
|
|
routingService := routing.NewRoutingService(os.Getenv("MICRO_API_TOKEN"))
|
|
rsp, err := routingService.Route(&routing.RouteRequest{
|
|
Destination: &routing.Point{
|
|
Latitude: 52.529407,
|
|
Longitude: 13.397634,
|
|
},
|
|
Origin: &routing.Point{
|
|
Latitude: 52.517037,
|
|
Longitude: 13.38886,
|
|
},
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|