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) {
});