public static void main(String[] args) { Configuration.setValue(AVKey.INITIAL_LATITUDE, 49.05); Configuration.setValue(AVKey.INITIAL_LONGITUDE, -122.78); Configuration.setValue(AVKey.INITIAL_ALTITUDE, 8000); ApplicationTemplate.start("World Wind Multi Path", AppFrame.class); }
public static void main(String[] args) { // Adjust configuration values before instantiation Configuration.setValue(AVKey.GLOBE_CLASS_NAME, EarthFlat.class.getName()); Configuration.setValue(AVKey.INITIAL_ALTITUDE, 27e6); Configuration.setValue(AVKey.INITIAL_LATITUDE, 0); Configuration.setValue(AVKey.INITIAL_LONGITUDE, 88); ApplicationTemplate.start("World Wind Icon Picking", AppFrame.class); }
public static void main(String[] args) { // zoom to San Francisco downtown Configuration.setValue(AVKey.INITIAL_ALTITUDE, 34e3); Configuration.setValue(AVKey.INITIAL_LATITUDE, 37.9521d); Configuration.setValue(AVKey.INITIAL_LONGITUDE, -119.7761d); // Adjust configuration values before instantiation ApplicationTemplate.start("World Wind Terrain Intersections", AppFrame.class); }
public static void main(String[] args) { Configuration.setValue(AVKey.INITIAL_LATITUDE, 37.8432); Configuration.setValue(AVKey.INITIAL_LONGITUDE, -105.0527); Configuration.setValue(AVKey.INITIAL_ALTITUDE, 7000); ApplicationTemplate.start("World Wind Video on Terrain", AppFrame.class); }
public static void main(String[] args) { ApplicationTemplate.start("World Wind Airspace Builder", AppFrame.class); }
public static void main(String[] args) { ApplicationTemplate.start("World Wind Layer Tree", AppFrame.class); }
public static void main(String[] args) { ApplicationTemplate.start("World Wind Place Names", AppFrame.class); }
/** * Marked as deprecated to keep it out of the javadoc. * * @param args the arguments passed to the program. * @deprecated */ public static void main(String[] args) { //noinspection deprecation ApplicationTemplate.start("World Wind Line Builder", LineBuilder.AppFrame.class); }