mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-17 13:24:56 +00:00
Generate clients (#206)
This commit is contained in:
7
examples/geocoding/reverse/curl/reverseGeocodeLocation.sh
Executable file
7
examples/geocoding/reverse/curl/reverseGeocodeLocation.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
curl "https://api.m3o.com/v1/geocoding/Reverse" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
||||
-d '{
|
||||
"latitude": 51.5123064,
|
||||
"longitude": -0.1216235
|
||||
}'
|
||||
17
examples/geocoding/reverse/go/reverseGeocodeLocation.go
Executable file
17
examples/geocoding/reverse/go/reverseGeocodeLocation.go
Executable file
@@ -0,0 +1,17 @@
|
||||
package example
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/micro/services/clients/go/geocoding"
|
||||
"os"
|
||||
)
|
||||
|
||||
// Reverse lookup an address from gps coordinates
|
||||
func ReverseGeocodeLocation() {
|
||||
geocodingService := geocoding.NewGeocodingService(os.Getenv("MICRO_API_TOKEN"))
|
||||
rsp, err := geocodingService.Reverse(&geocoding.ReverseRequest{
|
||||
Latitude: 51.5123064,
|
||||
Longitude: -0.1216235,
|
||||
})
|
||||
fmt.Println(rsp, err)
|
||||
}
|
||||
15
examples/geocoding/reverse/node/reverseGeocodeLocation.js
Executable file
15
examples/geocoding/reverse/node/reverseGeocodeLocation.js
Executable file
@@ -0,0 +1,15 @@
|
||||
import * as geocoding from "m3o/geocoding";
|
||||
|
||||
// Reverse lookup an address from gps coordinates
|
||||
async function ReverseGeocodeLocation() {
|
||||
let geocodingService = new geocoding.GeocodingService(
|
||||
process.env.MICRO_API_TOKEN
|
||||
);
|
||||
let rsp = await geocodingService.reverse({
|
||||
latitude: 51.5123064,
|
||||
longitude: -0.1216235,
|
||||
});
|
||||
console.log(rsp);
|
||||
}
|
||||
|
||||
await ReverseGeocodeLocation();
|
||||
Reference in New Issue
Block a user