?? overlayer.js
字號:
?Abstract.OverLayer = function(){};Abstract.OverLayer.prototype = {
initialize: function(mapDiv){
},
insert: function(){
if(this.model == null)
return ;
if (this.model.overlays == null)
this.model.overlays = new Array();
this.model.overlays.push(this);
this.mapDiv.appendChild(this.div)
},
remove: function(){
if(this.model == null)
return ;
if (this.model.overlays) {
this.model.overlays.without(this)
this.mapDiv.removeChild(this.div);
}
}
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -