gazetteerapp.java

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

JAVA
44
字号
/*Copyright (C) 2001, 2008 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.examples;import gov.nasa.worldwind.layers.AnnotationLayer;import java.awt.*;/** * @author jparsons * @version $Id$ */public class GazetteerApp extends ApplicationTemplate{    public static class AppFrame extends ApplicationTemplate.AppFrame    {        protected AnnotationLayer layer;        public AppFrame() throws IllegalAccessException, InstantiationException, ClassNotFoundException        {            super(true, false, false);            this.layer = new AnnotationLayer();            insertBeforeCompass(this.getWwd(), layer);            this.getContentPane().add(new GazetteerPanel(this.getWwd(), null), BorderLayout.NORTH);    //use default yahoo service        }        public AnnotationLayer getAnnotationLayer()        {            return layer;        }    }        public static void main(String[] args)        {            ApplicationTemplate.start("World Wind Gazetteer", AppFrame.class);        }}

⌨️ 快捷键说明

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