📄 tile.js
字号:
Tile = Class.create();
Tile.prototype = {
initialize: function(row, column, level, model){
this.row = row;
this.column = column;
this.level = level;
this.model = model;
},
getRow: function(){
return this.row;
},
getColumn: function(){
return this.column;
},
getLevel: function(){
return this.level;
},
getMapModel: function(){
return this.model;
},
getSrc: function(){
return this.model.getCurrentMapType().getSrc(this.level, this.row, this.column);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -