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

📄 om3dgraphichandler.java

📁 openmap java写的开源数字地图程序. 用applet实现,可以像google map 那样放大缩小地图.
💻 JAVA
字号:
/* *  ********************************************************************** * *  BBN Corporation *  10 Moulton St. *  Cambridge, MA 02138 *  (617) 873-2000 * *  Copyright (C) 2002 *  This software is subject to copyright protection under the laws of *  the United States and other countries. * *  ********************************************************************** * *  $Source: /cvs/distapps/openmap/src/j3d/com/bbn/openmap/tools/j3d/OM3DGraphicHandler.java,v $ *  $RCSfile: OM3DGraphicHandler.java,v $ *  $Revision: 1.2.2.2 $ *  $Date: 2005/08/11 21:03:15 $ *  $Author: dietrick $ * *  ********************************************************************** */package com.bbn.openmap.tools.j3d;/** * This is an interface that denotes an object that will contribute * objects into a Java 3D scene graph. If you write an object that * implements this interface, it will be called with a MapContent * object that you can use to add different objects to the scene. *  * @author dietrick */public interface OM3DGraphicHandler {    /**     * Provide a MapContent object for the OM3DGraphicHandler to add     * objects to. The MapContent object as three add() methods, one     * for OMGraphics, one for OMGrid specifically, and one for     * Shape3D objects. The OM3DGraphicHandler should go through its     * graphics and add them to this MapContext object. This should be     * done *before* the OM3DGraphicHandler returns from this method!     *      * @param mapContent The feature to be added to the     *        GraphicsToScene attribute     * @see MapContent     */    public void addGraphicsToScene(MapContent mapContent);}

⌨️ 快捷键说明

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