|
@@ -105,10 +105,12 @@ public class RasterServiceImpl implements IRasterService {
|
|
|
// 返回划定范围内的矢量数据
|
|
|
midGeom = analyseUtilsDBMapper.intersectionEwkt(bottomGeom, midGeom);
|
|
|
// 向外扩展1米,方便前端贴图
|
|
|
- bottomGeom=createUtilsDBMapper.bufferEwkt(useGeom, 0.5f);
|
|
|
+ String bottomGeomBuffer = createUtilsDBMapper.bufferEwkt(useGeom, 1f);
|
|
|
+
|
|
|
bottomGeom = analyseUtilsDBMapper.differenceWkt(bottomGeom, midGeom);
|
|
|
resMap.put("midGeom", midGeom);
|
|
|
resMap.put("bottomGeom", bottomGeom);
|
|
|
+ resMap.put("bottomGeomBuffer", bottomGeomBuffer);
|
|
|
return resMap;
|
|
|
}
|
|
|
}
|