Supermap GIS二次开发

开发工具与关键技术:iDesktop  Supermap GIS

作者:陈芝番

撰写时间:2020.5.13

目录

1.地图发布

2.选择工作空间类型

3.选择发布的服务类型

4.服务接口

5.地图

6.图层管理器

7.分布图

8.几何圆查询

总结


Supermap GIS二次开发_第1张图片

Supermap GIS 从开发工具安装,许可配置,数据集的导入,制图,性能优化,地图的发布都体现的Supermap GIS 制图严谨;那么还需要借助iserver驱动。

Supermap GIS二次开发_第2张图片

1.地图发布

发布一个地图需要选择文件工作空间或数据库工作空间,

Supermap GIS二次开发_第3张图片

2.选择工作空间类型

Supermap GIS二次开发_第4张图片

3.选择发布的服务类型

选择REST-地图服务,REST-数据服务,WMS1.1.1服务,WMS1.3.0服务大致就可以了

Supermap GIS二次开发_第5张图片

4.服务接口

http://localhost:8090/iserver/services/map-Gzsbyqmanxingbing/rest/maps/Baiyunqu@Guangzhoushibaiyunqu

Supermap GIS二次开发_第6张图片

5.地图

  
//host = document.location.toString().match(/file:\/\//)?"http://localhost:8090":'http://' + document.location.host, url = "http://localhost:8090/iserver/services/map-Gzsbyqmanxingbing/rest/maps/Baiyunqu@Guangzhoushibaiyunqu";

Supermap GIS二次开发_第7张图片

 6.图层管理器

 
           
                图层控制器                                            
           
               
                       
  •                                            
  •                                        
  •                                            
  •                                                    
  •                                            
  •                
           
       

 7.分布图

layer = new SuperMap.Layer.TiledDynamicRESTLayer("行政区划图", url, { transparent: true, cacheEnabled: true }, { maxResolution: "auto" });
                layer.events.on({"layerInitialized":addLayer});
                vectorLayer = new SuperMap.Layer.Vector("社康分布图");
                vectorLayer1 = new SuperMap.Layer.Vector("药店分布图");
                vectorLayer2 = new SuperMap.Layer.Vector("病例分布散点图");
                vectorLayer3 = new SuperMap.Layer.Vector("病例分布热力图");
                vectorLayer4 = new SuperMap.Layer.Vector("病原基因分布图");
                vectorLayer5 = new SuperMap.Layer.Vector("疫情预警提醒");             
                markerLayer = new SuperMap.Layer.Markers("医院分布图");

Supermap GIS二次开发_第8张图片

8.几何圆查询

  drawPolygon1 = new SuperMap.Control.DrawFeature(vectorLayer, SuperMap.Handler.RegularPolygon,{handlerOptions:{sides:50}});
                drawPolygon1.events.on({"featureadded": drawCompleted});

Supermap GIS二次开发_第9张图片

 

 //多边形查询
                drawPolygon2 = new SuperMap.Control.DrawFeature(vectorLayer, SuperMap.Handler.Polygon);
                drawPolygon2.events.on({"featureadded": drawCompleted});

Supermap GIS二次开发_第10张图片

 //点查询
                drawPoint = new SuperMap.Control.DrawFeature(vectorLayer, SuperMap.Handler.Point);
                drawPoint.events.on({"featureadded": drawPointCompleted});
                //线查询
                drawLine = new SuperMap.Control.DrawFeature(vectorLayer, SuperMap.Handler.Path);
                drawLine.events.on({"featureadded": drawPointCompleted});

  //矩形
                drawRectangle = new SuperMap.Control.DrawFeature(vectorLayer, SuperMap.Handler.Box);
                drawRectangle.events.on({"featureadded": drawRectangleCompleted});   

Supermap GIS二次开发_第11张图片

总结:

当然学习过程,需要多思考,多动手,多总结。那么提高软件知识和技术只是问题的表面,本质是要提高自己认识问题,分析问题,解决问题的思想高度。规划出的事,需要按照规划一步一步去实施,去实践,停留在纸张上的规划只是摆设,只有按规划去实施,才能做出更好的成绩!

你可能感兴趣的:(Supermap,GIS)