📄 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 + -