0

DragBox の選択範囲から新しいレイヤーを作成する方法はありますか?

ここに私のドラッグボックスの相互作用があります:

/* create drag box */
this.dragBox = new ol.interaction.DragBox({
    /* dragbox interaction is active only if alt key is pressed */
    condition: ol.events.condition.altKeyOnly,
    /* style the box */
    style: new ol.style.Style({
        stroke: new ol.style.Stroke({
            color: [0, 0, 255, 1]
        })
    })
});
/* add the DragBox interaction to the map */
this.map.addInteraction(this.dragBox);

boxend イベントで、バウンディング ボックスのデータを使用して新しいレイヤーを作成したいと考えています。これどうやってするの ?

4

1 に答える 1