openLayers--绘制多边形、获取视图的中心点、获取当前地图等级、设置地图等级

openLayers绘制多边形、获取视图中心点

前言

上一篇文章在vue项目中绘制了openlayers绘制了地图和标记点,本篇文章讲解openlayers绘制多边形

通过LineString来进行绘制、获取视图的中心位置、获取当前地图等级、设置地图等级
openLayers演示网址

效果图



1、导入LineString

import { Point, LineString } from "ol/geom";

2、创建添加多边形

java 复制代码
// 添加多边形
    addExtent (extent) {
      if (this.vectorSource) {
        // this.vectorSource.clear()
      } else {
        //矢量标注的数据源
        this.vectorSource = new VectorSource({
          features: []
        })
        // //矢量标注图层
        this.vectorLayer = new VectorLayer({
          source: this.vectorSource
        });
        this.map.addLayer(this.vectorLayer);
      }

      // // 创建要素,设置其样式
      var newPolygon = new Feature({
        geometry: new LineString([
        [110.3014, 14.82],
        [112.79, 14.82],
        [114.6636, 18.2977],
        [111.687, 18.897],
        [110.3014, 14.82],
      ])
      });

      newPolygon.setStyle(this.createfeature(newPolygon));
      this.vectorSource.addFeature(newPolygon);
    },

3、定义多变形样式

java 复制代码
// 定义多边形
    createfeature () {
      return new Style({
        fill: new Fill({
          color: 'rgba(1, 210, 241, 0.2)'
        }),
        stroke: new Stroke({
          color: 'rgba(255, 0, 0)',
          width: 4,
        }),
      })
    },

4、获取当前视图的中心点

javascript 复制代码
	// 获取范围
    getExtent () {
      const size = this.map.getSize();
      const extent = this.map.getView().calculateExtent(size);
      return extent
    },

    // 获取地图视野中心点
    getCenter () {
      const center = getCenter(this.getExtent())
      this.addVectorLabel(center)
    },

5、获取当前视图等级

javascript 复制代码
// 获取当前的视图等级
    getZoom(){
       alert(this.map.getView().getZoom());
    }

6、设置地图等级

javascript 复制代码
	// 设置当前缩放等级
    setZoom(){
      this.map.getView().setZoom(10);
    }
相关推荐
小白小白从不日白2 分钟前
react 组件通讯
前端·react.js
Redstone Monstrosity19 分钟前
字节二面
前端·面试
东方翱翔26 分钟前
CSS的三种基本选择器
前端·css
Fan_web1 小时前
JavaScript高级——闭包应用-自定义js模块
开发语言·前端·javascript·css·html
yanglamei19621 小时前
基于GIKT深度知识追踪模型的习题推荐系统源代码+数据库+使用说明,后端采用flask,前端采用vue
前端·数据库·flask
千穹凌帝1 小时前
SpinalHDL之结构(二)
开发语言·前端·fpga开发
冯宝宝^1 小时前
基于mongodb+flask(Python)+vue的实验室器材管理系统
vue.js·python·flask
dot.Net安全矩阵1 小时前
.NET内网实战:通过命令行解密Web.config
前端·学习·安全·web安全·矩阵·.net
Hellc0071 小时前
MacOS升级ruby版本
前端·macos·ruby
前端西瓜哥1 小时前
贝塞尔曲线算法:求贝塞尔曲线和直线的交点
前端·算法