Vue+penlayers实现多边形绘制及展示


Posted in Vue.js onDecember 24, 2020

本文实例为大家分享了Vue+penlayers实现多边形绘制展示代码,供大家参考,具体内容如下

<!--
 * @Description: 绘制多边形
 * @Author: Dragon
 * @Date: 2020-12-17 16:02:06
 * @LastEditTime: 2020-12-18 17:20:33
 * @LastEditors: Dragon
-->

<template>
 <div>
  <div class="query-wrap">
   <el-button type="primary" @click="drawStart('Polygon')">
    {{ isDraw ? "绘制区域" : "重新绘制" }}
   </el-button>
  </div>
  <div id="map"></div>
 </div>
</template>

<script>
import "ol/ol.css";
import { Map, View } from "ol";
import { Image as ImageLayer, Vector as VectorLayer } from "ol/layer";
import { ImageStatic, Vector as VectorSource } from "ol/source";
import { getCenter } from "ol/extent";
import { Projection } from "ol/proj";

import Draw from "ol/interaction/Draw";
import { Style, Fill, Stroke } from "ol/style";

import { GeoJSON } from "ol/format";
import staticMap from "@/assets/map.png";

export default {
 data() {
  return {
   map: null, // 地图
   imgx: 0, // 当前地图宽
   imgy: 0, // 当前地图高
   isDraw: true, // 是否绘制
   draw: null,
   source: null,
   vector: null,
   styles: [
    new Style({
     stroke: new Stroke({
      color: "rgba(255,0,0,0.6)",
      width: 2,
     }),
     fill: new Fill({
      color: "rgba(255,0,0,0.3)",
     }),
    }),
   ],
   geojsonObject: {
     'type': 'FeatureCollection',
     'features': [
      {
       'type': 'Feature',
       'geometry': {
        'type': 'Polygon',
        'coordinates': [
         [
          [97.16862961519749, 322.26517247174047],
          [117.3211820327625, 481.9353954724479],
          [1.056456546810466, 489.6863771715114],
          [13.458027265312012, 320.71497613192776],
          [97.16862961519749, 322.26517247174047]
                   ]
        ],
       },
      },
     ],
    },
  };
 },
 methods: {
  // 初始化地图
  initMap() {
   let extent = [0, 0, this.imgx, this.imgy];
   let projection = new Projection({
    code: "xkcd-image",
    units: "pixels",
    extent: extent,
   });
   let $this = this;
   this.map = new Map({
    target: "map",
    layers: [
     new ImageLayer({ // 展示地图层
      source: new ImageStatic({
       url: staticMap,
       projection: projection,
       imageExtent: extent,
      }),
     }),
     new VectorLayer({
      source: new VectorSource({
       features: new GeoJSON().readFeatures($this.geojsonObject),
      }),
      style: $this.styles,
     }),
    ],
    view: new View({
     projection: projection,
     center: getCenter(extent),
     zoom: 2,
     maxZoom: 18,
    }),
   });

   this.source = new VectorSource({ wrapX: false })
   this.vector = new VectorLayer({
    source: this.source,
    style: this.styles
   })
   this.map.addLayer(this.vector)
  },
  
  // 开始绘制多边形
  drawStart(type) {
   let that = this;
   if(this.isDraw) {
    this.isDraw = false
    this.draw = new Draw({
     source: this.source,
     type: type,
    });
    this.map.addInteraction(this.draw);
    this.draw.on("drawend", function (evt) {
     that.drawingEnd(evt);
    });
   } else {
    this.source.clear()
    this.map.removeInteraction(this.draw);
    this.isDraw = true
   }
   
  },

  // 构建多边形结束
  drawingEnd(evt) {
   let that = this
   const geo = evt.feature.getGeometry();
   const t = geo.getType();
   if (t === "Polygon") {
    // 获取坐标点
    const points = geo.getCoordinates();
    console.warn(points, "绘制结束,点坐标")
    this.map.removeInteraction(this.draw); // 移除绘制
   }
  },
 },
 mounted() {
  let that = this;
  let img = new Image();
  setTimeout(function() {
   img.src = staticMap;
   img.onload = function (res) {
    that.imgx = res.target.width;
    that.imgy = res.target.height;
    that.initMap();
   };
  }, 500)
  
 },
};
</script>

<style>
#map {
 width: 100%;
 height: calc(100vh - 50px);
}
</style>

效果图:

Vue+penlayers实现多边形绘制及展示

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Vue.js 相关文章推荐
vue 基于abstract 路由模式 实现页面内嵌的示例代码
Dec 14 Vue.js
Vue3 实现双盒子定位Overlay的示例
Dec 22 Vue.js
vue实现登录、注册、退出、跳转等功能
Dec 23 Vue.js
如何在vue-cli中使用css-loader实现css module
Jan 07 Vue.js
vue自定义组件实现双向绑定
Jan 13 Vue.js
springboot+VUE实现登录注册
May 27 Vue.js
详解Vue router路由
Nov 20 Vue.js
Vue提供的三种调试方式你知道吗
Jan 18 Vue.js
Vue的生命周期一起来看看
Feb 24 Vue.js
Vue全局事件总线你了解吗
Feb 24 Vue.js
Axios代理配置及封装响应拦截处理方式
Apr 07 Vue.js
vue-treeselect的基本用法以及解决点击无法出现拉下菜单
Apr 30 Vue.js
Vue使用鼠标在Canvas上绘制矩形
Dec 24 #Vue.js
vue绑定class的三种方法
Dec 24 #Vue.js
全面解析Vue中的$nextTick
Dec 24 #Vue.js
vue实现登录、注册、退出、跳转等功能
Dec 23 #Vue.js
vue下拉刷新组件的开发及slot的使用详解
Dec 23 #Vue.js
Vue3 实现双盒子定位Overlay的示例
Dec 22 #Vue.js
详解Vue的异步更新实现原理
Dec 22 #Vue.js
You might like
php str_pad 函数使用详解
2009/01/13 PHP
php循环检测目录是否存在并创建(循环创建目录)
2011/01/06 PHP
php 连接mysql连接被重置的解决方法
2011/02/15 PHP
深入PHP curl参数的详解
2013/06/17 PHP
详谈PHP程序Laravel 5框架的优化技巧
2016/07/18 PHP
thinkPHP5.0框架自动加载机制分析
2017/03/18 PHP
laravel框架中视图的基本使用方法分析
2019/11/23 PHP
javascript取消文本选定的实现代码
2010/11/14 Javascript
jquery json 实例代码
2010/12/02 Javascript
Js实现网页键盘控制翻页的方法
2014/10/30 Javascript
让JavaScript中setTimeout支持链式操作的方法
2015/06/19 Javascript
基于原生JS实现图片裁剪
2016/08/01 Javascript
jQuery Validate让普通按钮触发表单验证的方法
2016/12/15 Javascript
微信小程序 图片宽高自适应详解
2017/05/11 Javascript
ES6学习教程之模板字符串详解
2017/10/09 Javascript
微信小程序button组件使用详解
2018/01/31 Javascript
解决Vue+Electron下Vuex的Dispatch没有效果问题
2019/05/20 Javascript
vue中的面包屑导航组件实例代码
2019/07/01 Javascript
VUE实现Studio管理后台之鼠标拖放改变窗口大小
2020/03/04 Javascript
ant-design-vue按需加载的坑的解决
2020/05/14 Javascript
windows下安装python paramiko模块的代码
2013/02/10 Python
Python标准库之随机数 (math包、random包)介绍
2014/11/25 Python
python如何压缩新文件到已有ZIP文件
2018/03/14 Python
手把手教你Python yLab的绘制折线图的画法
2019/10/23 Python
CSS3绘制六边形的简单实现
2016/08/25 HTML / CSS
canvas三角函数模拟水波效果的示例代码
2018/07/03 HTML / CSS
英国当代时尚和街头服饰店:18montrose
2018/12/15 全球购物
英国第一摩托车和摩托车越野配件商店:GhostBikes
2019/03/10 全球购物
艺术学院毕业生自我评价
2014/03/02 职场文书
合伙协议书范本
2014/04/21 职场文书
商业项目策划方案
2014/06/05 职场文书
工地门卫岗位职责范本
2014/07/01 职场文书
大学生第一学年自我鉴定2015
2014/09/28 职场文书
小学生学习保证书
2015/02/26 职场文书
边城读书笔记
2015/06/29 职场文书
SpringBoot整合MongoDB的实现步骤
2021/06/23 MongoDB