action tfl_place_get_overlay { label: "Gets the place overlay for a given set of co-ordinates and a given width/height." provider: tfl method: GET path: "/Place/{type}/overlay/{z}/{Lat}/{Lon}/{width}/{height}" encoding: json input: { type: "object" properties: { Lat: { type: "string" } Lon: { type: "string" } height: { type: "integer" format: "int32" } lat: { type: "string" } "location.lat": { type: "number" format: "double" } "location.lon": { type: "number" format: "double" } lon: { type: "string" } type: { type: "array" items: { type: "string" } } width: { type: "integer" format: "int32" } z: { type: "integer" format: "int32" } } required: ["Lat", "Lon", "height", "lat", "location.lat", "location.lon", "lon", "type", "width", "z"] additionalProperties: false } output: { type: "object" properties: {} } }