2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.landtool.lanbase.modules.res.service.impl;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import com.landtool.lanbase.modules.res.dao.ZhuanTiZhiTuMapper;
import com.landtool.lanbase.modules.res.entity.Res_Catalog;
import com.landtool.lanbase.modules.res.entity.Res_MainInfo;
import com.landtool.lanbase.modules.res.entity.UserDefined.UserDef_BaseMap;
import com.landtool.lanbase.modules.res.entity.UserDefined.UserDef_SpaceServer;
import com.landtool.lanbase.modules.res.service.ZhuanTiZhiTuService;
 
/**
 * 专题制图
 */
@Service("ZhuanTiZhiTuService")
public class ZhuanTiZhiTuServiceImpl implements ZhuanTiZhiTuService {
 
    @Autowired
    private ZhuanTiZhiTuMapper zhuanTiZhiTuMapper;
 
    /**
     * 底图切换 -- 获取基础底图列表
     */
    @Override
    public List<UserDef_BaseMap> getBaseMapList(String type, Boolean SupportDynamic) {
        Map<String,Object> paramMap = new HashMap<String,Object>();
        paramMap.put("type", type);
        paramMap.put("supportdynamic", SupportDynamic);
        return zhuanTiZhiTuMapper.getBaseMapList(paramMap);
    }
 
    /**
     * 数据资源 - 我的制图
     */
    @Override
    public List<Res_MainInfo> getWoDeZhiTu(Map<String, Object> map) {
        return zhuanTiZhiTuMapper.getWoDeZhiTu(map);
    }
 
    /**
     * 获取业务图层目录结构列表
     * @param map 查询条件
     * @return
     */
    @Override
    public List<Res_Catalog> getYWTCCataLogList(Map<String, Object> map) {
        return zhuanTiZhiTuMapper.getYWTCCataLogList(map);
    }
 
    /**
     * 获取目录节点下业务图层资源列表
     * @param map 查询条件
     * @return
     */
    @Override
    public List<Res_MainInfo> getCatalogZiYuanList(Map<String, Object> map) {
        return zhuanTiZhiTuMapper.getCatalogZiYuanList(map);
    }
 
    /**
     * 获取空间分析列表
     */
    public List<UserDef_SpaceServer> getSpaceServerList(Map<String, Object> map){
        return zhuanTiZhiTuMapper.getSpaceServerList(map);
    }
}