首頁 > 軟體

利用OpenLayer繪製扇形的範例程式碼

2022-06-06 10:01:50

我在網上看了很多說是繪製扇形的方法,但是我用的時候都不是很好玩,所以說呢,我自己整理了一下,符合了我想要的效果,儘管我能力有限,還是決定分享一下,因為找資料太難了!

我比較懶,就不廢話了,直接上程式碼!

建立openlayers地圖

包我就不復制了,根據官網提供的API自己參照吧!

openlayers API地址

建立地圖

// 範例化Map
map = new Map({  // 建立一個地圖
  layers: [new TileLayer({
     source: new OSM(),
  }),],
  target: 'map',
  view: new View({
     center: fromLonLat([116.400819, 39.916263]),
     zoom: 15,
     constrainResolution: true,  // 設定縮放級別為整數 
     smoothResolutionConstraint: false,  // 關閉無級縮放地圖
  }),
});

上面程式碼大體就這個樣子。

到這兒應該沒什麼問題。我用的就是預設的 3857 座標系,不是4326的。

繪製扇形方法

繪製扇形方法就很簡單了,比如繪製兩個。

	  // 繪製扇形
      addCurve() {
        let origi_point = fromLonLat([116.410819, 39.916263]);  // 繪製扇形的頂點
        let circle = this.createRegularPolygonCurve(origi_point, 500, 100, 30, 90) // 呼叫繪製扇形的方法得到扇形
        let feature = new Feature(circle);  // 把扇形加入 feature
        feature.setStyle(  // 設定一下這個扇形的樣式
          new Style({
            fill: new Fill({
              color: 'rgba(32, 157, 230, 0.3)'
            }),
            stroke: new Stroke({
              color: 'rgba(255, 205, 67, 0.3)',
              width: 2
            }),
          })
        )
        feature.set('type', 'Curve')  // 這是給這個扇形新增額外的引數 , 如果是設定id 用 setId方法
        feature.set('curve', {   // 這是給這個扇形新增額外的引數,這裡的id和 setId的id沒關係
          id: 1,
          title: '測試001',
          msg: '測試001-1',
          msg2: '測試001-2',
        })

		// 建立第二個扇形,和第一個一樣
        let circle1 = this.createRegularPolygonCurve(origi_point, 500, 100, 30, 45)
        let feature1 = new Feature(circle1);
        feature1.setStyle(
          new Style({
            fill: new Fill({
              color: 'rgba(32, 157, 230, 0.3)'
            }),
            stroke: new Stroke({
              color: 'rgba(255, 205, 67, 0.3)',
              width: 2
            }),
          })
        )
        feature1.set('type', 'Curve')
        feature1.set('curve', {
          id: 2,
          title: '超級無敵炫酷爆龍戰神',
          msg: '超級無敵炫酷爆龍戰神 描述001',
          msg2: '超級無敵炫酷爆龍戰神 描述002',
        })

        let vectorSource = new VectorSource();  // 建立一個資料來源
        vectorSource.addFeatures([feature, feature1]);   // 把兩個扇形加進資料來源
        let vectorLayer = new VectorLayer({     // 建立一個圖層,把資料來源加進圖層
          source: vectorSource 
        });
        map.addLayer(vectorLayer);   // 把圖層加進地圖
      },

接下來就是最重要的, 怎麼繪製的扇形,也就是上邊程式碼呼叫的方法。

	 /**
       * APIMethod:OpenLayers繪製扇形的介面擴充套件
       * @param origin 圓心
       * @param radius 半徑
       * @param sides 邊數
       * @param r 弧度
       * @param angel 旋轉角度(扇形右邊半徑與x正向軸的角度)
       * @returns {OpenLayers.Geometry.Polygon}
       */
      createRegularPolygonCurve(origin, radius, sides, r, angel) {
        let rotation = 360 - r;
        let angle = Math.PI * ((1 / sides) - (1 / 2));
        if (rotation) {
          angle += (rotation / 180) * Math.PI;
        }
        let rotatedAngle, x, y;
        let points = [];
        for (let i = 0; i < sides; ++i) {
          let an = i * ((360 - rotation) / 360);
          rotatedAngle = angle + (an * 2 * Math.PI / sides);
          x = origin[0] + (radius * Math.cos(rotatedAngle));
          y = origin[1] + (radius * Math.sin(rotatedAngle));
          points.push([x, y]);
        }
        if (rotation != 0) {
          points.push(origin);
        }
        var ring = new LinearRing(points);
        ring.rotate(angel / 57.3, origin);
        let list = ring.getCoordinates()

        return new Polygon([list]);
      },

好了,就這樣,我是可以了,看你們了!

到此這篇關於利用OpenLayer繪製扇形的範例程式碼 的文章就介紹到這了,更多相關OpenLayer繪製扇形內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com