-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathGetMapImageryTile.json
52 lines (52 loc) · 1.2 KB
/
GetMapImageryTile.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"parameters": {
"api-version": "1.0",
"format": "png",
"style": "satellite",
"zoom": 6,
"x": 10,
"y": 22,
"subscription-key": "[subscription-key]"
},
"responses": {
"200": {
"headers": {},
"body": "binary string image"
},
"400": {
"headers": {},
"body": {
"statuscode": "400",
"message": "Bad request: one or more parameters were incorrectly specified or are mutually exclusive."
}
},
"401": {
"headers": {},
"body": {
"statuscode": "401",
"message": "Unauthorized: Access is denied due to invalid credentials."
}
},
"403": {
"headers": {},
"body": {
"statuscode": "403",
"message": "Permission, capacity, or authentication issues."
}
},
"404": {
"headers": {},
"body": {
"statuscode": "404",
"message": "Not Found: the requested resource could not be found, but it may be available again in the future."
}
},
"500": {
"headers": {},
"body": {
"statuscode": "500",
"message": "An error occurred while processing the request. Please try again later."
}
}
}
}