📄 mapwidthmap.java
字号:
package com.esri.solutions.jitk.web.tasks.print.browser;
import java.util.LinkedHashMap;
@SuppressWarnings("serial")
public class MapWidthMap extends LinkedHashMap<String, String> {
public MapWidthMap() {
super();
this.put("default", "Default");
this.put("3", "3(8)");
this.put("4", "4(10)");
this.put("5", "5(13)");
this.put("6", "6(15)");
this.put("7", "7(18)");
this.put("8", "8(20)");
this.put("9", "9(23)");
this.put("10", "10(25)");
this.put("11", "11(28)");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -