📄 imagewidthmap.java
字号:
package com.esri.solutions.jitk.web.tasks.export.image;
import java.util.LinkedHashMap;
public class ImageWidthMap extends LinkedHashMap<String, String> {
private static final long serialVersionUID = -1189362715103935436L;
public ImageWidthMap(String defaultText) {
this.put("default", defaultText);
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 + -