当前位置: 首页 > news >正文

电商网站建设实验原理检测网站是否被墙

电商网站建设实验原理,检测网站是否被墙,兼职做一篇微信的网站,水贝网站建设在WebGIS端制图是指通过Web浏览器界面实现地理信息数据的可视化、编辑、分析以及地图产品的制作。这一过程通常涉及以下几个关键环节#xff1a; **1. 前端技术栈#xff1a; •HTML/CSS/JavaScript#xff1a;作为Web开发的基础#xff0c;用于构建用户界面布局、样式设…在WebGIS端制图是指通过Web浏览器界面实现地理信息数据的可视化、编辑、分析以及地图产品的制作。这一过程通常涉及以下几个关键环节 **1. 前端技术栈 •HTML/CSS/JavaScript作为Web开发的基础用于构建用户界面布局、样式设计以及交互逻辑。 •Web地图库 •Leaflet、OpenLayers、Mapbox GL JS等开源库提供地图容器、图层管理、交互控件等功能便于快速构建Web地图应用。 •GIS服务接口 •Web Map Service (WMS)用于请求地图影像瓦片。 •Web Feature Service (WFS)用于获取矢量地理数据。 •Web Coverage Service (WCS)用于获取栅格数据。 •GeoJSON、TopoJSON、KML等数据格式直接嵌入或通过API加载。 •地图样式与主题 •Mapbox Studio、QGIS Cloud等在线工具或使用JSON-based样式语言如Mapbox Style Specification、OpenLayers Style Format自定义地图样式。 **2. 数据准备与集成 •数据源接入 连接本地或远程GIS服务器、云存储如AWS S3、Azure Blob Storage、开放数据平台如OpenStreetMap、ArcGIS Online等获取所需GIS数据。 •数据处理 •对接地理编码服务如Google Maps Geocoding API、Mapbox Geocoding API进行地址解析或逆地理编码。 •使用客户端库如Turf.js、Mapbox GL Geostats进行空间分析、统计计算。 •缓存与优化 •利用客户端缓存如IndexedDB、localStorage存储常用数据或结果提高加载速度。 •使用矢量瓦片、切片金字塔技术优化大规模数据展示。 **3. 地图交互设计 •基础交互缩放、平移、旋转地图开启/关闭图层调整图层透明度等。 •高级交互 •查询与标注实现点击查询、范围选择、热点分析等功能显示相关信息或动态标注。 •编辑与绘图支持用户在地图上添加、修改、删除地理要素如使用Leaflet.draw、OpenLayers Editing等插件。 •路由规划集成路线规划服务如OSRM、GraphHopper提供驾车、步行、骑行路径规划。 •空间分析在浏览器端进行简单分析操作如缓冲区分析、叠加分析等。 **4. 地图定制与输出 •地图样式定制通过调整颜色、图标、文字样式等元素创建符合项目主题的地图样式。 •地图打印与导出 •实现Web页面打印预览支持自定义打印范围、比例尺、布局等。 •提供地图截图、PDF导出功能或集成地图打包服务如Mapfish Print、GeoServer Print。 •地图分享与嵌入 •提供短链接、嵌入代码方便用户将地图分享至社交媒体或嵌入到其他网站。 **5. 跨平台兼容与响应式设计 •移动端适配确保地图应用在不同尺寸的移动设备上具有良好用户体验如使用触屏手势、自适应布局。 •多浏览器支持测试在主流浏览器Chrome、Firefox、Safari、Edge上的兼容性。 **6. 性能监控与优化 •性能指标跟踪监控地图加载时间、内存占用、网络请求等指标识别性能瓶颈。 •优化措施 •压缩与合并静态资源减少HTTP请求。 •使用Web Workers进行大数据处理避免阻塞主线程。 •采用矢量瓦片、LODLevel of Detail策略按需加载数据。通过上述技术手段和流程WebGIS端制图实现了从数据获取、处理到地图展现、交互的全流程操作让用户能够在Web浏览器环境中便捷地进行地图制作与分析满足各种GIS应用场景的需求。 关键代码实现 组件化代码 import Draw from ol/interaction/Draw import VectorSource from ol/source/Vector; import VectorLayer from ol/layer/Vector; import TileLayer from ol/layer/Tile; import OSM from ol/source/OSM;import {unByKey} from ol/Observable.js; import Overlay from ol/Overlay; import {getArea, getLength} from ol/sphere.js; import View from ol/View; import {LineString, Polygon} from ol/geom.js; import {Circle as CircleStyle, Fill, Stroke, Style} from ol/style.js; import {generateUUID, getLayerByCode} from /components/iClientOpenLayers/MapCommon;var DrawMap /** class */ (function () {function DrawMap(map, drawMapType,drawType,freeHand) {/*** Currently drawn feature.* type {module:ol/Feature~Feature}*/this.sketchnull;this.freeHandfreeHand;/*** The help tooltip element.* type {Element}*/this.helpTooltipElementnull;/*** Overlay to show the help messages.* type {module:ol/Overlay}*/this.helpTooltipnull;/*** The drawMap tooltip element.* type {Element}*/this.drawMapTooltipElementnull;/*** Overlay to show the drawMapment.* type {module:ol/Overlay}*/this.drawMapTooltipnull;/*** Message to show when the user is drawing a polygon.* type {string}*/this.continuePolygonMsg 继续点击绘制多边形;/*** Message to show when the user is drawing a line.* type {string}*/this.continueLineMsg 继续点击绘制线;this.mapmap;this.drawMapTypedrawMapType;this.drawnull;this.listenernull;this.sourcenull;// var layer ;// 获取存放feature的vectorlayer层。map初始化的时候可以添加好了for(let layerTmp of map.getLayers().getArray()){if(layerTmp.get(name)DrawMap){this.source layerTmp.getSource();}}if(this.sourceundefined||this.sourcenull){this.sourcegetLayerByCode(this.map,CRegion).getSource()// this.source new VectorSource();// var vector new VectorLayer({// source: this.source,// style: new Style({// fill: new Fill({// color: rgba(255, 255, 255, 0.2),// }),// stroke: new Stroke({// color: #ffcc33,// width: 2,// }),// image: new CircleStyle({// radius: 7,// fill: new Fill({// color: #ffcc33,// }),// }),// }),// });// vector.set(name,DrawMap);// vector.set(code,DrawMap);// this.map.addLayer(vector);}if(drawTypeDrawMap){this.createDrawMapTooltip();this.createHelpTooltip();let thatthis;this.pointerMoveHandler function (evt) {if (evt.dragging) {return;}/** type {string} */var helpMsg 请点击开始绘制;if (that.sketch) {var geom (that.sketch.getGeometry());if (geom instanceof Polygon) {helpMsg that.continuePolygonMsg;} else if (geom instanceof LineString) {helpMsg that.continueLineMsg;}}that.helpTooltipElement.innerHTML helpMsg;that.helpTooltip.setPosition(evt.coordinate);that.helpTooltipElement.classList.remove(hidden);};/*** Handle pointer move.* param {module:ol/MapBrowserEvent~MapBrowserEvent} evt The event.*/map.on(pointermove, this.pointerMoveHandler);map.getViewport().addEventListener(mouseout,() {this.helpTooltipElement.classList.add(hidden);});// 量测调用this.addInteraction();}else if(drawTypeDraw){// 量测调用this.addInteractionEx();}};DrawMap.prototype. formatLength function (line) {var length getLength(line,{projection:EPSG:4326});var output;if (length 100) {output (Math.round(length / 1000 * 100) / 100) km;} else {output (Math.round(length * 100) / 100) m;}return output;};DrawMap.prototype. formatArea function (polygon) {var area getArea(polygon,{projection:EPSG:4326});var output;if (area 10000) {output (Math.round(area / 1000000 * 100) / 100) kmsup2/sup;} else {output (Math.round(area * 100) / 100) msup2/sup;}return output;};DrawMap.prototype.addInteractionfunction() {var type (this.drawMapType area ? Polygon : LineString);this.draw new Draw({ol_uid:draw,source: this.source,type: type,snapTolerance:20,freehand: this.freeHand,style: new Style({fill: new Fill({color: rgba(255, 255, 255, 0.2)}),stroke: new Stroke({color: rgba(0, 0, 0, 0.5),lineDash: [10, 10],width: 2}),image: new CircleStyle({radius: 5,stroke: new Stroke({color: rgba(0, 0, 0, 0.7)}),fill: new Fill({color: rgba(255, 255, 255, 0.2)})})})});this.map.addInteraction(this.draw);this.draw.on(drawstart,(evt) {// set sketchthis.sketch evt.feature;/** type {module:ol/coordinate~Coordinate|undefined} */var tooltipCoord evt.coordinate;this.listener this.sketch.getGeometry().on(change, (evt) {var geom evt.target;var output;if (geom instanceof Polygon) {output this.formatArea(geom);tooltipCoord geom.getInteriorPoint().getCoordinates();} else if (geom instanceof LineString) {output this.formatLength(geom);tooltipCoord geom.getLastCoordinate();}this.drawMapTooltipElement.innerHTML output;this.drawMapTooltip.setPosition(tooltipCoord);});}, this);this.draw.on(drawend,(e) {this.drawMapTooltipElement.className ol-tooltip ol-tooltip-static;this.drawMapTooltip.setOffset([0, -7]);let cFeature e.feature;cFeature.values_[ID]generateUUID()// unset sketchthis.clearDraw();}, this);};DrawMap.prototype.addInteractionExfunction(){var type (this.drawMapType area ? Polygon : LineString);if(this.drawMapTypePoint){typethis.drawMapType;}this.draw new Draw({source: this.source,type: type,freehand: this.freeHand,snapTolerance:20,});this.draw.on(drawend,(e) {const geometry e.feature.getGeometry()const corrdinates geometry.getCoordinates()let cFeature e.feature;cFeature.values_[ID]generateUUID()// unset sketchthis.clearDraw();}, this);this.map.addInteraction(this.draw);};DrawMap.prototype.createDrawMapTooltipfunction() {if (this.drawMapTooltipElement) {this.drawMapTooltipElement.parentNode.removeChild(this.drawMapTooltipElement);}this.drawMapTooltipElement document.createElement(div);this.drawMapTooltipElement.className ol-tooltip ol-tooltip-drawMap;this.drawMapTooltip new Overlay({element: this.drawMapTooltipElement,offset: [0, -15],positioning: bottom-center});this.drawMapTooltip.set(name,DrawMap);debuggerthis.drawMapTooltip.getElement().style.display this.map.addOverlay(this.drawMapTooltip);};DrawMap.prototype.createHelpTooltipfunction () {if (this.helpTooltipElement) {this.helpTooltipElement.parentNode.removeChild(this.helpTooltipElement);}this.helpTooltipElement document.createElement(div);this.helpTooltipElement.className ol-tooltip hidden;this.helpTooltip new Overlay({element: this.helpTooltipElement,offset: [15, 0],positioning: center-left});this.map.addOverlay(this.helpTooltip);};DrawMap.prototype.clearDrawfunction () {debuggerthis.sketch null;// unset tooltip so that a new one can be createdthis.drawMapTooltipElement null;// this.createDrawMapTooltip();if(this.listener!undefinedthis.listener!null){unByKey(this.listener);}try{this.map.un(pointermove, this.pointerMoveHandler);}catch (e){}if(this.draw!undefinedthis.draw!null){for(let i 0; i this.map.interactions.array_.length; i){if(this.draw.ol_uid this.map.interactions.array_[i].ol_uid){this.map.removeInteraction(this.map.interactions.array_[i]);break}}}if(this.helpTooltipElement!undefinedthis.helpTooltipElement!null){this.helpTooltipElement.classList.add(hidden);}if(this.helpTooltip!undefinedthis.helpTooltip!null){this.map.removeOverlay(this.helpTooltip);}};return DrawMap; }());export {DrawMap}; 调用代码 //绘制制图切换 drawMapSwitch(pIndex){if(this.curDraw!null){this.curDraw.clearDraw();this.curDrawnull;}if(pIndex0){this.curDrawnew DrawMap(this.sMap, LineString,Draw,false);}else if(pIndex1){this.curDrawnew DrawMap(this.sMap, area,Draw,false);}else if(pIndex2){this.curDrawnew DrawMap(this.sMap, Point,Draw,false);}else if(pIndex3){this.curDrawnew DrawMap(this.sMap, LineString,Draw,true);}else if(pIndex4){this.curDrawnew DrawMap(this.sMap, area,Draw,true);}else if(pIndex5){for(let layerTmp of this.sMap.getLayers().getArray()){if(layerTmp.get(code)CRegion){layerTmp.getSource().clear();break;}}for(let i0;ithis.sMap.getOverlays().getArray().length;i){if(this.sMap.getOverlays().getArray()[i].get(code)CRegion){this.sMap.removeOverlay(this.sMap.getOverlays().getArray()[i]);i--;}}}else if(pIndex6){let geojsongetGeojsonByLayerCode(this.sMap,CRegion)alert(geojson)}} 前端代码设计 div classoperate map_huizhii classicon huizhi/iul classmap-sub-navli v-for(item,index) in drawMapData clickdrawMapSwitch(index){{item}}/li/ul /div .huizhi{width: 38px;height: 38px;background: url(./img/huizhi.png) no-repeat center center;background-image: -webkit-image-set(url(./img/huizhi.png) 1x, url(./img/huizhi2x.png) 2x);background-image: image-set(url(./img/huizhi.png) 1x, url(./img/huizhi2x.png) 2x);background-repeat: no-repeat;background-position: center center; } 软件实现效果 最后分享下地图下载器下载地址 通过百度网盘分享的文件V-2.0jbr… 链接:https://pan.baidu.com/s/1AiFKTTknkEHkJ7t4nQ2P1g  提取码:8664 复制这段内容打开「百度网盘APP 即可获取」 如果对您有所帮助请点赞打赏支持 技术合作交流qq2401315930
http://www.pierceye.com/news/287910/

相关文章:

  • 免费网站建设那个好wordpress本地怎么上传服务器
  • 自己做的网站加载慢WordPress模板首页文件是啥
  • 教学网站建设网站建设岗位有哪些
  • 网站建设合同的验收表网页网站的区别是什么
  • 开福区网站建设中wordpress调用所有栏目
  • 网站建设的流程是什么意思青岛做网站公司
  • 什么网站有项目做中铁建设企业门户网
  • 网站域名商代理商安卓商店
  • 深圳中英文网站建设广州知名设计公司排名
  • 一个公司设计网站怎么做的蜜桃传奇免费网页版
  • 网络推广网站培训班有人用wordpress默认主题
  • 网站建设 后台南宁做网站方案
  • 在线制作插画网站网站建设有哪些公司
  • 合肥的网站建设剂屏自己可以做开奖网站吗
  • 官网设计比较好看的网站学校网站建设对教学的意义
  • 济南建站推荐企汇优见效付款毕设代做网站招聘
  • 泰然建设网站免费软件app下载大全正能量网站
  • 张掖市网站建设北京代理记账财务公司
  • 中铁建设集团网站网络公司手机网站
  • 站长工具是什么意思建设银行网站 开户行怎么查
  • 做简历模板的网站都有哪些wordpress是啥东西
  • 网站流量渠道湖州做网站优化
  • 汽车网站哪个好预付的网站开发费用怎么入账
  • 网站代管理哪个网站有介绍拿到家做的手工活
  • 惊艳的网站网站建设实训过程报告
  • 秦皇岛做网站公司企业网站备案需要什么
  • 做网站必须开厂吗科协网站建设建议
  • 西宁 网站建设凡科做视频网站
  • wordpress中文主题 wp-cmsseo排名赚钱
  • 优质的网站制作在线查企业信息查询平台