sarposition.java

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

JAVA
48
字号
/*Copyright (C) 2001, 2007 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.applications.sar;import gov.nasa.worldwind.geom.*;/** * @author tag * @version $Id: SARPosition.java 3879 2007-12-11 07:47:29Z tgaskins $ */public class SARPosition extends Position{    public static class Info    {        private final String author;        private final long editTime;        private final String comment;        public Info(String author, long editTime, String comment)        {            this.author = author;            this.editTime = editTime;            this.comment = comment;        }    }    private Info info;    public SARPosition()    {        super(Angle.ZERO, Angle.ZERO, 0d);    }    public SARPosition(Angle latitude, Angle longitude, double elevation)    {        super(latitude, longitude, elevation);    }    public SARPosition(Position pos)    {        super(pos.getLatitude(), pos.getLongitude(), pos.getElevation());    }}

⌨️ 快捷键说明

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