mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 11:15:12 +00:00
19 lines
433 B
JavaScript
Executable File
19 lines
433 B
JavaScript
Executable File
const { LocationService } = require("m3o/location");
|
|
|
|
// Search for entities in a given radius
|
|
async function searchForLocations() {
|
|
let locationService = new 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);
|
|
}
|
|
|
|
searchForLocations();
|