fixedzoomincommand.java
来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 25 行
JAVA
25 行
package com.esri.solutions.jitk.commands;
import com.esri.adf.web.data.WebMap;
import com.esri.adf.web.data.geometry.WebExtent;
/**
* The zoom in command.
*
*/
public class FixedZoomInCommand extends FixedZoomAction {
/**
* Does a fixed zoom in
*/
public void zoomFixedIn() {
WebMap webMap = getWebContext().getWebMap();
// compute new scaled extent and refresh
WebExtent newExtent = getScaledExtent(webMap.getCurrentExtent(),
getZoomFactor());
webMap.setCurrentExtent(newExtent);
getWebContext().refresh();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?