mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-17 05:14:52 +00:00
Generate clients (#206)
This commit is contained in:
20
examples/location/search/node/searchForLocations.js
Executable file
20
examples/location/search/node/searchForLocations.js
Executable file
@@ -0,0 +1,20 @@
|
||||
import * as location from "m3o/location";
|
||||
|
||||
// Search for entities in a given radius
|
||||
async function SearchForLocations() {
|
||||
let locationService = new location.LocationService(
|
||||
process.env.MICRO_API_TOKEN
|
||||
);
|
||||
let rsp = await locationService.search({
|
||||
center: {
|
||||
latitude: 51.511061,
|
||||
longitude: -0.120022,
|
||||
},
|
||||
numEntities: 10,
|
||||
radius: 100,
|
||||
type: "bike",
|
||||
});
|
||||
console.log(rsp);
|
||||
}
|
||||
|
||||
await SearchForLocations();
|
||||
Reference in New Issue
Block a user