⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tile.js

📁 WebGis基本功能展示
💻 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 + -