forked from umer-ali-khan/mapbox-postman-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mapbox_Static.postman_collection.json
121 lines (121 loc) · 3.19 KB
/
Mapbox_Static.postman_collection.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"variables": [],
"info": {
"name": "MapBox - Static",
"_postman_id": "5fb2ff32-024b-5053-02c9-504d6fe19349",
"description": "The Mapbox Static API returns static maps and raster tiles from styles in the Mapbox Style Specification. See the Static (Classic) API documentation.",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
{
"name": "Retrieve a static map from a style",
"request": {
"url": {
"raw": "https://api.mapbox.com/styles/v1/umeralikhan/cjkjys5uq0sf62smvfmgavc9k/static/-122.4241,37.78,14.25,0,60/600x600?access_token={{mapbox_full_access_token}}",
"protocol": "https",
"host": [
"api",
"mapbox",
"com"
],
"path": [
"styles",
"v1",
"umeralikhan",
"cjkjys5uq0sf62smvfmgavc9k",
"static",
"-122.4241,37.78,14.25,0,60",
"600x600"
],
"query": [
{
"key": "access_token",
"value": "{{mapbox_full_access_token}}",
"equals": true,
"description": ""
}
],
"variable": []
},
"method": "GET",
"header": [],
"body": {},
"description": "# a 2x tile: this is a 512x512 tile appropriate\n# for high-density displays like Retina displays\n$ curl \"https://api.mapbox.com/v4/mapbox.streets/1/0/[email protected]?access_token=your-access-token\""
},
"response": []
},
{
"name": "Retrieve raster tiles from styles",
"request": {
"url": {
"raw": "https://api.mapbox.com/styles/v1/umeralikhan/cjkjys5uq0sf62smvfmgavc9k/tiles/1/1/0?access_token={{mapbox_full_access_token}}",
"protocol": "https",
"host": [
"api",
"mapbox",
"com"
],
"path": [
"styles",
"v1",
"umeralikhan",
"cjkjys5uq0sf62smvfmgavc9k",
"tiles",
"1",
"1",
"0"
],
"query": [
{
"key": "access_token",
"value": "{{mapbox_full_access_token}}",
"equals": true,
"description": ""
}
],
"variable": []
},
"method": "GET",
"header": [],
"body": {},
"description": "# a 2x tile: this is a 512x512 tile appropriate\n# for high-density displays like Retina displays\n$ curl \"https://api.mapbox.com/v4/mapbox.streets/1/0/[email protected]?access_token=your-access-token\""
},
"response": []
},
{
"name": "Retrieve a map's WMTS document",
"request": {
"url": {
"raw": "https://api.mapbox.com/styles/v1/umeralikhan/cjkjys5uq0sf62smvfmgavc9k/wmts?access_token={{mapbox_full_access_token}}",
"protocol": "https",
"host": [
"api",
"mapbox",
"com"
],
"path": [
"styles",
"v1",
"umeralikhan",
"cjkjys5uq0sf62smvfmgavc9k",
"wmts"
],
"query": [
{
"key": "access_token",
"value": "{{mapbox_full_access_token}}",
"equals": true,
"description": ""
}
],
"variable": []
},
"method": "GET",
"header": [],
"body": {},
"description": "# a 2x tile: this is a 512x512 tile appropriate\n# for high-density displays like Retina displays\n$ curl \"https://api.mapbox.com/v4/mapbox.streets/1/0/[email protected]?access_token=your-access-token\""
},
"response": []
}
]
}