OpenLayers复制矢量图形Control

这个Control的初始化需要传入一个VectorLayer和一个MousePosition控件,当用户按下Ctrl+V时,自动复制VectorLayer层的第一个选中对象并且将之拷贝到鼠标在地图上的当前位置(从MousePosition获得)


OpenLayers.Control.CopyControl = OpenLayers.Class(OpenLayers.Control, {

    initialize: function(vectorLayer, mousePositionCtl) {
    	this.layer = vectorLayer;
    	this.mousePositionCtl = mousePositionCtl;
        OpenLayers.Control.prototype.initialize.apply(this, arguments);
    },
    
    destroy: function() {
        if (this.handler) {
            this.handler.destroy();
        }        
        this.handler = null;
        
        OpenLayers.Control.prototype.destroy.apply(this, arguments);
    },
    
    draw: function() {
        this.handler = new OpenLayers.Handler.Keyboard( this, { 
                                "keydown": this.defaultKeyPress }, {
                                "keyMask": OpenLayers.Handler.MOD_CTRL
                                });
        this.activate();
    },
    
    defaultKeyPress: function (evt) {
    	
        switch(evt.keyCode) {
            case 86:
            	var vector = this.layer.selectedFeatures[0];
            	if(vector) {
            		var lonLat = this.layer.map.getLonLatFromPixel(this.mousePositionCtl.lastXy);
            		var newVector = vector.clone();
            		this.layer.addFeatures([newVector]);
            		newVector.move(lonLat);
            	}
        } 
    },

    CLASS_NAME: "OpenLayers.Control.CopyControl"
});

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值