action tomtom_get_map { label: "GetMap" description: "The GetMap call implements the Web Map Service 1.1.1 standard\nto access TomTom raster map tiles. This service is described\nin the response to the GetCapabilities API call." provider: tomtom method: GET path: "/map/{versionNumber}/wms/" encoding: json input: { type: "object" properties: { bbox: { type: "string" } format: { type: "string" enum: ["image/jpeg", "image/png"] } height: { type: "integer" } layers: { type: "string" enum: ["basic"] } request: { type: "string" enum: ["GetMap"] } service: { type: "string" enum: ["WMS"] } srs: { type: "string" enum: ["EPSG:3857", "EPSG:4326"] } styles: { type: "string" enum: [""] } version: { type: "string" enum: ["1.1.1"] } versionNumber: { type: "integer" enum: [1] } width: { type: "integer" } } required: ["bbox", "format", "height", "layers", "request", "srs", "version", "versionNumber", "width"] additionalProperties: false } output: { type: "object" additionalProperties: true } }