当前位置: 首页 > 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.zqtcl.cn/news/287910/

相关文章:

  • 威海外贸建站制作游戏的平台
  • 网站栏目策划 有思想的新闻网站建设开发的流程
  • 网站描述修改潍坊百度网站排名
  • 网站开发设计的技术网站开发可能存在的困难
  • 单片机做网站网站地图那么建设
  • 手机版网站建设软件wordpress主题开发ide
  • 网站建设的技术有哪些内容网站推广优化排名
  • 网站开发用jsp网站开发需要什么技术
  • 网站打开404错误怎么解决网站开发树形图
  • 好的建设网站公司哪家好湖南省做网站的
  • 网站怎么上传网站建设可行性分析表
  • 东营做网站优化价格企业网站开发一般多少钱
  • 高端网站设计公司排名邢台哪里有做网站的
  • 广州网站开发 英诺科技营销式网站建设
  • 网站存在的缺陷编程的基础知识
  • flash同视频做网站天津建设工程信息网投标信息系统
  • 湛江做网站开发手机网址大全主页网址
  • 平面网站设计如何租用网站服务器
  • 课程视频网站建设的必要性专利减缓在哪个网站上做
  • 正规品牌网站设计品牌网站建设开发 脚本语言
  • 潍坊模板建站定制网站规划管理部门的网站建设
  • 光明楼网站建设九一人才网赣州招聘官网
  • 如何做网站监控wordpress修改文章点赞数
  • 佛山高端网站建设报价网站的建设属于无形资产
  • 永川网站设计wordpress+用户前台
  • 晋城客运东站网站开发公司装修通知告示怎么写
  • 北京做手机网站的公司哪家好完整的网站开发
  • 建立网站的内容规划长沙网络推广哪家
  • 网站建设及优化教程百度网站优化排名
  • 医院网站推广渠道网站关键词排名不稳定