⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jrect.java

📁 openmap java写的开源数字地图程序. 用applet实现,可以像google map 那样放大缩小地图.
💻 JAVA
字号:
// **********************************************************************// // <copyright>// //  BBN Technologies//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/corba/com/bbn/openmap/layer/specialist/JRect.java,v $// $RCSfile: JRect.java,v $// $Revision: 1.2.2.1 $// $Date: 2004/10/14 18:26:31 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.layer.specialist;import com.bbn.openmap.CSpecialist.LLPoint;import com.bbn.openmap.CSpecialist.RectanglePackage.ERectangle;import com.bbn.openmap.CSpecialist.XYPoint;import com.bbn.openmap.omGraphics.*;import java.io.Serializable;/** JRect - rectangles */public class JRect extends OMRect implements Serializable, JObjectHolder {    protected transient com.bbn.openmap.CSpecialist.EComp object = null;    /** Constructor. */    public JRect(ERectangle erect) {        super();        JGraphic.fillOMGraphicParams(this, erect.egraphic);        x1 = erect.p1.x;        y1 = erect.p1.y;        x2 = erect.p2.x;        y2 = erect.p2.y;        lat1 = erect.ll1.lat;        lon1 = erect.ll1.lon;        lat2 = erect.ll2.lat;        lon2 = erect.ll2.lon;    }    public void setObject(com.bbn.openmap.CSpecialist.EComp aObject) {        object = aObject;    }    public com.bbn.openmap.CSpecialist.EComp getObject() {        return object;    }    public void update(                       com.bbn.openmap.CSpecialist.GraphicPackage.GF_update update) {        JGraphic.update((JObjectHolder) this, update);    }    public void update(                       com.bbn.openmap.CSpecialist.RectanglePackage.RF_update update) {        // do the updates, but don't rerender just yet        switch (update.discriminator().value()) {        // set fixed point        case com.bbn.openmap.CSpecialist.RectanglePackage.settableFields._RF_ll1:            LLPoint ll1 = update.ll1();            lat1 = ll1.lat;            lon1 = ll1.lon;            setNeedToRegenerate(true);            break;        case com.bbn.openmap.CSpecialist.RectanglePackage.settableFields._RF_p1:            XYPoint pt1 = update.p1();            x1 = pt1.x;            y1 = pt1.y;            if (renderType != RENDERTYPE_LATLON)                setNeedToRegenerate(true);            break;        case com.bbn.openmap.CSpecialist.RectanglePackage.settableFields._RF_ll2:            LLPoint ll2 = update.ll2();            lat2 = ll2.lat;            lon2 = ll2.lon;            if (renderType == RENDERTYPE_LATLON)                setNeedToRegenerate(true);            break;        case com.bbn.openmap.CSpecialist.RectanglePackage.settableFields._RF_p2:            XYPoint pt2 = update.p2();            x2 = pt2.x;            y2 = pt2.y;            if (renderType != RENDERTYPE_LATLON)                setNeedToRegenerate(true);            break;        default:            System.err.println("JRect.update: invalid rect update");            break;        }    }}

⌨️ 快捷键说明

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