|
@@ -5,18 +5,24 @@ package cn.com.taiji.web.controller;
|
|
|
import cn.com.taiji.common.domain.Result;
|
|
|
import cn.com.taiji.cql.model.GeoDataSource;
|
|
|
import cn.com.taiji.cql.model.GeoRequestParam;
|
|
|
+import cn.com.taiji.tile.model.Lgsqy;
|
|
|
+import cn.com.taiji.tile.model.StgViewDeviceinfoDf;
|
|
|
import cn.com.taiji.tile.service.ITileService;
|
|
|
+import cn.com.taiji.tile.service.LgsqyService;
|
|
|
+import cn.com.taiji.tile.service.StgViewDeviceinfoDfService;
|
|
|
import cn.com.taiji.web.service.IGeoDataSourceService;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
import javax.servlet.ServletOutputStream;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
@@ -43,6 +49,23 @@ public class TileWebController {
|
|
|
private IGeoDataSourceService geoDataSourceService;
|
|
|
|
|
|
|
|
|
+ @Resource
|
|
|
+ private LgsqyService lgsqyService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private StgViewDeviceinfoDfService stgViewDeviceinfoDfService;
|
|
|
+
|
|
|
+ @GetMapping("/getDevices")
|
|
|
+ public List<StgViewDeviceinfoDf> getDevices(){
|
|
|
+ return stgViewDeviceinfoDfService.list();
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/getLgsqy")
|
|
|
+ public List<Lgsqy> getLgsqy(){
|
|
|
+ return lgsqyService.list();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@ApiOperation("面向瓦片的点击查询")
|
|
|
@GetMapping("/queryElements")
|
|
|
public Result queryElements(String bbox,Integer type,String layerName){
|
|
@@ -51,6 +74,11 @@ public class TileWebController {
|
|
|
return Result.of(list, 0, "操作成功");
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/queryTile2")
|
|
|
+ public void queryTile2(){
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@RequestMapping(value = {"/queryTile"}, method = {RequestMethod.GET, RequestMethod.POST})
|
|
|
public void queryTile(HttpServletRequest request, HttpServletResponse response) {
|
|
@@ -64,18 +92,25 @@ public class TileWebController {
|
|
|
|
|
|
GeoDataSource geoDs = geoDataSourceService.layerCodeGeoDataSource(geoRequestParam.getLayers());
|
|
|
|
|
|
- if(geoDs !=null){
|
|
|
+ //判断请求类型
|
|
|
+ if(StringUtils.equals(geoRequestParam.getRequest(),"GetFeatureInfo")){
|
|
|
+ //根据用户点击查询详情
|
|
|
|
|
|
- byte[] ret = tileService.tileData(geoRequestParam,geoDs);
|
|
|
+ }else{
|
|
|
+ if(geoDs !=null){
|
|
|
|
|
|
- responseWrite(response, "image/png", ret);
|
|
|
+ byte[] ret = tileService.tileData(geoRequestParam,geoDs);
|
|
|
|
|
|
+ responseWrite(response, "image/png", ret);
|
|
|
|
|
|
- }else{
|
|
|
|
|
|
- log.info("根据图层代码:" + geoRequestParam.getLayers() + "获取图层对应的数据源为空或者为null");
|
|
|
+ }else{
|
|
|
+
|
|
|
+ log.info("根据图层代码:" + geoRequestParam.getLayers() + "获取图层对应的数据源为空或者为null");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}catch (Exception exception){
|
|
|
|
|
|
exception.printStackTrace();
|