1
0
forked from MTSR/mapserver
mapserver/static/js/api.js

13 lines
198 B
JavaScript
Raw Normal View History

2019-04-04 11:19:29 +03:00
2019-06-11 16:01:16 +03:00
export function getMapObjects(query){
2019-06-11 15:16:41 +03:00
return m.request({
method: "POST",
url: "api/mapobjects/",
data: query
});
}
2019-06-11 16:01:16 +03:00
export function getConfig(){
2019-06-11 15:16:41 +03:00
return m.request("api/config");
}