Hi, I'm creating a map by using HTTP POST to /api/v2/maps. payload sample:
{
"title": "testmap",
"abstract": "testmap",
"data": {
"map": {
"projection": "EPSG:3857",
"units": "m",
"zoom": 5,
"center": {
"x": 517164.3275252839,
"y": 6842056.397470128,
"crs": "EPSG:3857"
},
"maxExtent": [
462271.7796363245,
6796328.352314704,
572680.2784587856,
6887664.30256273
],
I'm expecting that the thumbnail shows only the maxExtent area, but it shows the whole world:
Q: Is there a way to get a correct thumbnail when using HTTP POST?
Hi, I'm creating a map by using HTTP POST to /api/v2/maps. payload sample:
I'm expecting that the thumbnail shows only the maxExtent area, but it shows the whole world:
Q: Is there a way to get a correct thumbnail when using HTTP POST?