五章-59-要素的修改

本文基于騰訊課堂老胡的課《跟我學(xué)Openlayers--基礎(chǔ)實例詳解》做的學(xué)習(xí)筆記昭灵,使用的openlayers 5.3.x api。

源碼 見 1040.html 榛瓮,對應(yīng)的 官網(wǎng)示例 https://openlayers.org/en/latest/examples/modify-test.html?q=Modify

https://openlayers.org/en/latest/examples/draw-and-modify-features.html?q=Modify

https://openlayers.org/en/latest/examples/modify-features.html?q=Modify

https://openlayers.org/en/latest/examples/snap.html?q=Modify

image.png
image.png

在修改要素的時候潘悼,是否插入頂點;正則表達式匹配拧烦,若Polygon,則可以增加頂點钝计;該回調(diào)函數(shù)返回值是true 時可以插入頂點恋博;否則不能插入頂點齐佳。

<!DOCTYPE html>
<html>

<head>
 <title>要素的修改</title>
 <link rel="stylesheet" href="../include/ol.css" type="text/css" />
 <script src="../include/ol.js"></script>
</head>
<style>
 html,
 body,
 .map {
   margin: 0;
   padding: 0;
   width: 100%;
   height: 95%;
 }
</style>

<body>

 <div id="map" class="map"></div>

 <script>

   var styleFunction = (function () {
     var styles = {};
     var image = new ol.style.Circle({
       radius: 5,
       fill: null,
       stroke: new ol.style.Stroke({ color: 'orange', width: 2 })
     });
     styles['Point'] = new ol.style.Style({ image: image });
     styles['Polygon'] = new ol.style.Style({
       stroke: new ol.style.Stroke({
         color: 'blue',
         width: 3
       }),
       fill: new ol.style.Fill({
         color: 'rgba(0, 0, 255, 0.1)'
       })
     });
     styles['MultiLineString'] = new ol.style.Style({
       stroke: new ol.style.Stroke({
         color: 'green',
         width: 3
       })
     });
     styles['MultiPolygon'] = new ol.style.Style({
       stroke: new ol.style.Stroke({
         color: 'yellow',
         width: 1
       }),
       fill: new ol.style.Fill({
         color: 'rgba(255, 255, 0, 0.1)'
       })
     });
     styles['default'] = new ol.style.Style({
       stroke: new ol.style.Stroke({
         color: 'red',
         width: 3
       }),
       fill: new ol.style.Fill({
         color: 'rgba(255, 0, 0, 0.1)'
       }),
       image: image
     });
     return function (feature) {
       return styles[feature.getGeometry().getType()] || styles['default'];
     };
   })();

   var geojsonObject = {
     'type': 'FeatureCollection',
     'crs': {
       'type': 'name',
       'properties': {
         'name': 'EPSG:3857'
       }
     },
     'features': [{
       'type': 'Feature',
       'geometry': {
         'type': 'Point',
         'coordinates': [0, 0]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'MultiPoint',
         'coordinates': [[-2e6, 0], [0, -2e6]]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'LineString',
         'coordinates': [[4e6, -2e6], [8e6, 2e6], [9e6, 2e6]]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'LineString',
         'coordinates': [[4e6, -2e6], [8e6, 2e6], [8e6, 3e6]]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'Polygon',
         'coordinates': [[[-5e6, -1e6], [-4e6, 1e6],
         [-3e6, -1e6], [-5e6, -1e6]], [[-4.5e6, -0.5e6],
         [-3.5e6, -0.5e6], [-4e6, 0.5e6], [-4.5e6, -0.5e6]]]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'MultiLineString',
         'coordinates': [
           [[-1e6, -7.5e5], [-1e6, 7.5e5]],
           [[-1e6, -7.5e5], [-1e6, 7.5e5], [-5e5, 0], [-1e6, -7.5e5]],
           [[1e6, -7.5e5], [15e5, 0], [15e5, 0], [1e6, 7.5e5]],
           [[-7.5e5, -1e6], [7.5e5, -1e6]],
           [[-7.5e5, 1e6], [7.5e5, 1e6]]
         ]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'MultiPolygon',
         'coordinates': [
           [[[-5e6, 6e6], [-5e6, 8e6], [-3e6, 8e6],
           [-3e6, 6e6], [-5e6, 6e6]]],
           [[[-3e6, 6e6], [-2e6, 8e6], [0, 8e6],
           [0, 6e6], [-3e6, 6e6]]],
           [[[1e6, 6e6], [1e6, 8e6], [3e6, 8e6],
           [3e6, 6e6], [1e6, 6e6]]]
         ]
       }
     }, {
       'type': 'Feature',
       'geometry': {
         'type': 'GeometryCollection',
         'geometries': [{
           'type': 'LineString',
           'coordinates': [[-5e6, -5e6], [0, -5e6]]
         }, {
           'type': 'Point',
           'coordinates': [4e6, -5e6]
         }, {
           'type': 'Polygon',
           'coordinates': [
             [[1e6, -6e6], [2e6, -4e6], [3e6, -6e6], [1e6, -6e6]]
           ]
         }]
       }
     }]
   };

   var source = new ol.source.Vector({
     features: (new ol.format.GeoJSON()).readFeatures(geojsonObject)
   });

   var layer = new ol.layer.Vector({
     source: source,
     style: styleFunction
   });

   //單擊選擇要素后,更改要素的樣式债沮,完成對要素的修改
   var overlayStyle = (function () {
     var styles = {};
     styles['Polygon'] = [
       new ol.style.Style({
         fill: new ol.style.Fill({
           color: [255, 255, 255, 0.5]
         })
       }),
       new ol.style.Style({
         stroke: new ol.style.Stroke({
           color: [255, 255, 255, 1],
           width: 5
         })
       }),
       new ol.style.Style({
         stroke: new ol.style.Stroke({
           color: [0, 153, 255, 1],
           width: 3
         })
       })
     ];
     styles['MultiPolygon'] = styles['Polygon'];

     styles['LineString'] = [
       new ol.style.Style({
         stroke: new ol.style.Stroke({
           color: [255, 255, 255, 1],
           width: 5
         })
       }),
       new ol.style.Style({
         stroke: new ol.style.Stroke({
           color: [0, 153, 255, 1],
           width: 3
         })
       })
     ];
     styles['MultiLineString'] = styles['LineString'];

     styles['Point'] = [
       new ol.style.Style({
         image: new ol.style.Circle({
           radius: 7,
           fill: new ol.style.Fill({
             color: [0, 153, 255, 1]
           }),
           stroke: new ol.style.Stroke({
             color: [255, 255, 255, 0.75],
             width: 1.5
           })
         }),
         zIndex: 100000
       })
     ];
     styles['MultiPoint'] = styles['Point'];

     styles['GeometryCollection'] = styles['Polygon'].concat(styles['Point']);

     return function (feature) {
       return styles[feature.getGeometry().getType()];
     };
   })();

   var select = new ol.interaction.Select({
     style: overlayStyle
   });

   var modify = new ol.interaction.Modify({
     features: select.getFeatures(),
     style: overlayStyle,
     insertVertexCondition: function () { //在修改要素的時候炼吴,是否插入頂點;正則表達式匹配疫衩,若Polygon硅蹦,則可以增加頂點;該回調(diào)函數(shù)返回值是true 時可以插入頂點闷煤;否則不能插入頂點童芹。
       return !select.getFeatures().getArray().every(function (feature) {
         return feature.getGeometry().getType().match(/Polygon/);
       });
     }
   });

   var map = new ol.Map({
     interactions: ol.interaction.defaults().extend([select, modify]),
     layers: [layer],
     target: 'map',
     view: new ol.View({
       center: [0, 1000000],
       zoom: 2
     })
   });





 </script>
</body>

</html>
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市鲤拿,隨后出現(xiàn)的幾起案子假褪,更是在濱河造成了極大的恐慌,老刑警劉巖近顷,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件生音,死亡現(xiàn)場離奇詭異,居然都是意外死亡窒升,警方通過查閱死者的電腦和手機久锥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來异剥,“玉大人,你說我怎么就攤上這事絮重≡┦伲” “怎么了?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵青伤,是天一觀的道長督怜。 經(jīng)常有香客問我,道長狠角,這世上最難降的妖魔是什么号杠? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮丰歌,結(jié)果婚禮上姨蟋,老公的妹妹穿的比我還像新娘。我一直安慰自己立帖,他們只是感情好眼溶,可當我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著晓勇,像睡著了一般堂飞。 火紅的嫁衣襯著肌膚如雪灌旧。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天绰筛,我揣著相機與錄音枢泰,去河邊找鬼。 笑死铝噩,一個胖子當著我的面吹牛衡蚂,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播薄榛,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼讳窟,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了敞恋?” 一聲冷哼從身側(cè)響起丽啡,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎硬猫,沒想到半個月后补箍,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡啸蜜,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年坑雅,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片衬横。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡裹粤,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蜂林,到底是詐尸還是另有隱情遥诉,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布噪叙,位于F島的核電站矮锈,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏睁蕾。R本人自食惡果不足惜苞笨,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望子眶。 院中可真熱鬧瀑凝,春花似錦、人聲如沸臭杰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽硅卢。三九已至射窒,卻和暖如春藏杖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背脉顿。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工蝌麸, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人艾疟。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓来吩,卻偏偏與公主長得像,于是被迫代替她去往敵國和親蔽莱。 傳聞我的和親對象是個殘疾皇子弟疆,可洞房花燭夜當晚...
    茶點故事閱讀 43,543評論 2 349

推薦閱讀更多精彩內(nèi)容