📄 earthelevationmodel.java
字号:
/*Copyright (C) 2001, 2006 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.globes;import gov.nasa.worldwind.terrain.*;/** * An elevation model of Earth that uses the World Wind tile service. * * @author Tom Gaskins * @version $Id: EarthElevationModel.java 9464 2009-03-18 05:51:49Z tgaskins $ * @deprecated Use {@link BasicElevationModelFactory} to {@link BasicElevationModel} to create elevation models. Until * this class is removed it will use the factory to create an Earth elevation model from a configuration * file. */public class EarthElevationModel extends CompoundElevationModel{ public EarthElevationModel() { BasicElevationModelFactory emf = new BasicElevationModelFactory(); this.addElevationModel(emf.createFromConfigFile("config/LegacyEarthElevationModel.xml")); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -