首页 / 浏览问题 / WebGIS / 问题详情
调用iserver自带的栅格查询接口
48EXP 2022年01月02日

iserver自带的区域栅格查询接口

http://localhost:8090/iserver/services/data-world/rest/data/datasources/World/datasets/WorldEarth/imageValues.json?bounds={%22circle%22:{%22centerPoint%22:{%22x%22:112.351881,%22y%22:35.673401},%22radius%22:%201}}

这种GET请求iserver的方式怎么把所传的参数写到data:{

}

   $.ajax({

                    url: 'http://localhost:8090/iserver/services/data-world/rest/data/datasources/World/datasets/WorldEarth/imageValues.json', 

                    data: {

                        "bounds":{ "leftBottom": { "x": 112.351881, "y": 34.663401 }, "rightTop": { "x": 113.361881, "y": 35.673401 } }

                    },

                    type: 'post',

                    dataType: 'json',

                    success: function (data) {

                    }

           

                });

1个回答

SuperMap iServer提供使用 POST 请求模拟 GET 请求的机制。具体是:资源所需参数不放在 URI 中,而是放在 POST 的请求体中,在 POST 请求的 URI 后跟上参数“_method= GET”来标识该请求。
420EXP 2022年01月04日
...