{ "id": "RenderMap", "title": "Maps rendering process", "version": "1.1.0", "jobControlOptions": [ "sync-execute" ], "outputTransmission" : [ "value" ], "description": "RenderMap process", "links": [ { "rel": "http://www.opengis.net/def/rel/ogc/1.0/execute", "href": "https://maps.gnosis.earth/ogcapi/processes/RenderMap/execution", "type": "application/json", "title": "Execution endpoint" } ], "keywords": [ "process", "maps" ], "inputs": { "layers" : { "title" : "layers", "description" : "The layers to render on the map", "minOccurs" : 1, "maxOccurs" : "unbounded", "schema" : { "oneOf": [ { "type": "string", "contentEncoding": "binary", "contentMediaType": "image/tiff; application=geotiff" }, { "type": "object", "contentMediaType": "application/geo+json", "$ref": "https://geojson.org/schema/FeatureCollection.json" } ] } }, "background" : { "title": "background", "description": "The background color of the map", "minOccurs" : 0, "maxOccurs" : 1, "schema" : { "type" : "string", "default" : "gray" } }, "transparent" : { "title": "transparent", "description": "Whether the map's background is transparent.", "minOccurs" : 0, "maxOccurs" : 1, "schema" : { "type" : "boolean", "default" : true } } }, "outputs": { "map" : { "title": "Rendered map", "description": "The rendered map", "schema" : { "oneOf" : [ { "type": "string", "contentEncoding": "binary", "contentMediaType": "image/tiff; application=geotiff" }, { "type": "string", "contentEncoding": "binary", "contentMediaType": "image/png" }, { "type": "string", "contentEncoding": "binary", "contentMediaType": "image/jpeg" } ] } } } }