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

📄 ielevationcalculator.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.services.elevation;

import com.esri.solutions.jitk.services.common.ServicesException;

/**
 * Responsible for calculating an elevation.  Implementations of this 
 * interface will need to determine the strategy for calculating the 
 * elevation.
 */
public interface IElevationCalculator {

	/**
	 * Calculates the elevation for a particular point on a map.  The Point
	 * should be in map coordinates and not screen coordinates.  If there is
	 * an error condition during the execution of this method, then an
	 * {@link ElevationException} should be thrown.
	 * 
	 * @param pt	Map point in which to determine elevation, 
	 * 				cannot be <code>null</code>.
	 * @return Data type that contains the elevation value along with unit of measure information. 
	 * @throws ServicesException Thrown if there was an error condition that occurred.
	 */
	public Elevation calculateElevation (Point pt) throws ServicesException;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -