action gisgraphy_geoloc { label: "Geocode an address" description: "The geolocalisation service allows to search for features around a earth location. you can Specify GPS position, Limit the results to a specific place type (e.g : search all monuments around a point), Limit the results to a specified radius, Paginate the results, Tells if you want the output to be indented (currently, applies only for XML, not JSON for performance reasons. May change in next version)" provider: gisgraphy method: GET path: "/geoloc/search" encoding: json input: { type: "object" properties: { callback: { type: "string" } distance: { type: "string" } format: { type: "string" } from: { type: "string" } indent: { type: "string" } lat: { type: "string" } lng: { type: "string" } placetype: { type: "string" } radius: { type: "string" } to: { type: "string" } } required: ["lat", "lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }