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

📄 esripoint.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/openmap/com/bbn/openmap/dataAccess/shape/EsriPoint.java,v $// $RCSfile: EsriPoint.java,v $// $Revision: 1.6.2.2 $// $Date: 2005/08/09 17:23:02 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.dataAccess.shape;import com.bbn.openmap.omGraphics.DrawingAttributes;import com.bbn.openmap.omGraphics.OMGraphicConstants;import com.bbn.openmap.omGraphics.OMPoint;/** * An extension to OMPoint that typecasts a specific Esri graphic * type. Used to ensure that all OMGraphics added to a EsriGraphicList * is of the same type. *  * @author Doug Van Auken */public class EsriPoint extends OMPoint implements Cloneable, EsriGraphic,        OMGraphicConstants {    public EsriPoint(float lat, float lon) {        super(lat, lon);    }    /**     * The lat/lon extent of the EsriGraphic, assumed to contain miny,     * minx, maxy maxx in order of the array.     */    public void setExtents(float[] extents) {    // we know what it is.    }    /**     * The lat/lon extent of the EsriGraphic, returned as miny, minx,     * maxy maxx in order of the array.     */    public float[] getExtents() {        float[] ex = new float[4];        ex[0] = getLat();        ex[1] = getLon();        ex[2] = getLat();        ex[3] = getLon();        return ex;    }    public static EsriPoint convert(OMPoint ompoint) {        if (ompoint.getRenderType() == RENDERTYPE_LATLON) {            EsriPoint ePoint = new EsriPoint(ompoint.getLat(), ompoint.getLon());            ePoint.setAttributes(ompoint.getAttributes());            DrawingAttributes attributes = new DrawingAttributes();            attributes.setFrom(ompoint);            attributes.setTo(ePoint);            // Hmmm. looses drawing information, like Oval, etc.            // That's not even kept in the shape file, so it might be            // something for the drawing attributes. Better save it            // in case someone looks for it later.            ePoint.setOval(ompoint.isOval());            ePoint.setRadius(ompoint.getRadius());            return ePoint;        } else {            return null;        }    }    public EsriGraphic shallowCopy() {        return shallowCopyPoint();    }    public EsriPoint shallowCopyPoint() {        return (EsriPoint) super.clone();    }}

⌨️ 快捷键说明

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