get_load_zone_map_screenshot#
Query | API Key Required
Use the dedicated Map Screenshot API when you need a pre-rendered overlay for a specific load zone layer — pass latitude, longitude, layerId, width, height, and zoom. Returns a base64-encoded image centred on the given coordinates. For an address-based screenshot, use get_load_zone_screenshot instead.
query GetLoadZoneMapScreenshot {
getLoadZoneMapScreenshot(
input: {
latitude: "52.520007"
longitude: "13.4049539999998"
layerId: 1
width: 400
height: 300
zoom: 6
}
)
}
Input#
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
String! |
Yes |
Latitude in decimal degrees |
|
String! |
Yes |
Longitude in decimal degrees |
|
Int! |
Yes |
Layer ID (see get_load_zone_standards) |
|
Int! |
Yes |
Image width in pixels |
|
Int! |
Yes |
Image height in pixels |
|
Int! |
Yes |
Map zoom level |
Response#
Returns a base64-encoded image string.