earthelevationmodel.java

来自「world wind java sdk 源码」· Java 代码 · 共 28 行

JAVA
28
字号
/*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 + =
减小字号Ctrl + -
显示快捷键?