| | |
| | | @SysLog() |
| | | @ApiOperation(value = "查询点分析") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "wkt", value = "点WKT", dataType = "String", example = "POINT (115.94927385452 32.3754479115071)"), |
| | | @ApiImplicitParam(name = "wkt", value = "点WKT", dataType = "String", example = "POINT (157.750107 29.036669)"), |
| | | @ApiImplicitParam(name = "pixel", value = "像素值", dataType = "Integer", example = "1") |
| | | }) |
| | | @GetMapping(value = "/selectByPoint") |
| | | public ResponseMsg<Object> selectByPoint(String wkt, Integer pixel) { |
| | | try { |
| | | // Map<String, Double> map = new HashMap<>(5); map.put("图层名", 0.0); return success(map) |
| | | if (StringHelper.isEmpty(wkt)) { |
| | | return fail("WKT字符串不能为空"); |
| | | } |