mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-16 04:54:42 +00:00
Generate clients (#206)
This commit is contained in:
9
examples/geocoding/lookup/curl/geocodeAnAddress.sh
Executable file
9
examples/geocoding/lookup/curl/geocodeAnAddress.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
curl "https://api.m3o.com/v1/geocoding/Lookup" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
||||
-d '{
|
||||
"address": "10 russell st",
|
||||
"city": "london",
|
||||
"country": "uk",
|
||||
"postcode": "wc2b"
|
||||
}'
|
||||
19
examples/geocoding/lookup/go/geocodeAnAddress.go
Executable file
19
examples/geocoding/lookup/go/geocodeAnAddress.go
Executable file
@@ -0,0 +1,19 @@
|
||||
package example
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/micro/services/clients/go/geocoding"
|
||||
"os"
|
||||
)
|
||||
|
||||
// Lookup returns a geocoded address including normalized address and gps coordinates. All fields are optional, provide more to get more accurate results
|
||||
func GeocodeAnAddress() {
|
||||
geocodingService := geocoding.NewGeocodingService(os.Getenv("MICRO_API_TOKEN"))
|
||||
rsp, err := geocodingService.Lookup(&geocoding.LookupRequest{
|
||||
Address: "10 russell st",
|
||||
City: "london",
|
||||
Country: "uk",
|
||||
Postcode: "wc2b",
|
||||
})
|
||||
fmt.Println(rsp, err)
|
||||
}
|
||||
17
examples/geocoding/lookup/node/geocodeAnAddress.js
Executable file
17
examples/geocoding/lookup/node/geocodeAnAddress.js
Executable file
@@ -0,0 +1,17 @@
|
||||
import * as geocoding from "m3o/geocoding";
|
||||
|
||||
// Lookup returns a geocoded address including normalized address and gps coordinates. All fields are optional, provide more to get more accurate results
|
||||
async function GeocodeAnAddress() {
|
||||
let geocodingService = new geocoding.GeocodingService(
|
||||
process.env.MICRO_API_TOKEN
|
||||
);
|
||||
let rsp = await geocodingService.lookup({
|
||||
address: "10 russell st",
|
||||
city: "london",
|
||||
country: "uk",
|
||||
postcode: "wc2b",
|
||||
});
|
||||
console.log(rsp);
|
||||
}
|
||||
|
||||
await GeocodeAnAddress();
|
||||
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