mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 19:25:16 +00:00
23 lines
472 B
Go
Executable File
23 lines
472 B
Go
Executable File
package example
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/micro/services/clients/go/location"
|
|
"os"
|
|
)
|
|
|
|
// Search for entities in a given radius
|
|
func SearchForLocations() {
|
|
locationService := location.NewLocationService(os.Getenv("MICRO_API_TOKEN"))
|
|
rsp, err := locationService.Search(&location.SearchRequest{
|
|
Center: &location.Point{
|
|
Latitude: 51.511061,
|
|
Longitude: -0.120022,
|
|
},
|
|
NumEntities: 10,
|
|
Radius: 100,
|
|
Type: "bike",
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|