linkactionlist.java

来自「OpenMap是一个基于JavaBeansTM的开发工具包。利用OpenMap你」· Java 代码 · 共 1,646 行 · 第 1/5 页

JAVA
1,646
字号
     * @see com.bbn.openmap.layer.link.LinkGrid     * @throws IOException     */    public void updateGrid(float lt, float ln, int offset_x1, int offset_y1,                           int rows, int columns, float orientation,                           float vResolution, float hResolution, int major,                           int[] data, LinkProperties properties,                           int graphicUpdateMask) throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkGrid.write(lt,                ln,                offset_x1,                offset_y1,                rows,                columns,                orientation,                vResolution,                hResolution,                major,                data,                properties,                link.dos);    }    /**     * Write a line in the response.     *      * @param lat_1 latitude of placement of start of line.     * @param lon_1 longitude of placement of start of line.     * @param lat_2 latitude of placement of end of line.     * @param lon_2 longitude of placement of end of line.     * @param lineType type of line - straight, rhumb, great circle..     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkLine     */    public void updateLine(float lat_1, float lon_1, float lat_2, float lon_2,                           int lineType, LinkProperties properties,                           int graphicUpdateMask) throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkLine.write(lat_1,                lon_1,                lat_2,                lon_2,                lineType,                properties,                link.dos);    }    /**     * Write a line in the response.     *      * @param lat_1 latitude of placement of start of line.     * @param lon_1 longitude of placement of start of line.     * @param lat_2 latitude of placement of end of line.     * @param lon_2 longitude of placement of end of line.     * @param lineType type of line - straight, rhumb, great circle..     * @param nsegs number of points to use to approximate curved line..     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkLine     */    public void updateLine(float lat_1, float lon_1, float lat_2, float lon_2,                           int lineType, int nsegs, LinkProperties properties,                           int graphicUpdateMask) throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkLine.write(lat_1,                lon_1,                lat_2,                lon_2,                lineType,                nsegs,                properties,                link.dos);    }    /**     * Write a line in the response.     *      * @param x1 Horizontal pixel placement of start of line.     * @param y1 Vertical pixel placement of start of line.     * @param x2 Horizontal pixel placement of end of line.     * @param y2 Vertical pixel placement of end of line.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkLine     */    public void updateLine(int x1, int y1, int x2, int y2,                           LinkProperties properties, int graphicUpdateMask)            throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkLine.write(x1, y1, x2, y2, properties, link.dos);    }    /**     * Write a line in the response.     *      * @param lat_1 latitude of placement of line.     * @param lon_1 longitude of placement of line.     * @param x1 Horizontal pixel offset of start of line.     * @param y1 Vertical pixel offset of start of line.     * @param x2 Horizontal pixel offset of end of line.     * @param y2 Vertical pixel offset of end of line.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkLine     */    public void updateLine(float lat_1, float lon_1, int x1, int y1, int x2,                           int y2, LinkProperties properties,                           int graphicUpdateMask) throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkLine.write(lat_1, lon_1, x1, y1, x2, y2, properties, link.dos);    }    /**     * Write a raster in the response.     *      * @param lt latitude of placement of upper left corner of raster.     * @param ln longitude of placement of upper left corner of raster.     * @param ii ImageIcon to place on the map..     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @throws InterruptedException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(float lt, float ln, ImageIcon ii,                             LinkProperties properties, int graphicUpdateMask)            throws IOException, InterruptedException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(lt, ln, ii, properties, link.dos);    }    /**     * Write a raster in the response.     *      * @param x1 horizontal pixel location of upper left corner of raster.     * @param y1 vertical pixel location of upper left corner of raster.     * @param ii ImageIcon to place on the map..     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @throws InterruptedException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(int x1, int y1, ImageIcon ii,                             LinkProperties properties, int graphicUpdateMask)            throws IOException, InterruptedException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(x1, y1, ii, properties, link.dos);    }    /**     * Write a raster in the response.     *      * @param lt latitude of placement of upper left corner of raster.     * @param ln longitude of placement of upper left corner of raster.     * @param offset_x1 horizontal pixel offset of upper left corner of raster.     * @param offset_y1 vertical pixel offset of upper left corner of raster.     * @param ii ImageIcon to place on the map..     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @throws InterruptedException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(float lt, float ln, int offset_x1, int offset_y1,                             ImageIcon ii, LinkProperties properties,                             int graphicUpdateMask) throws IOException,            InterruptedException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(lt, ln, offset_x1, offset_y1, ii, properties, link.dos);    }    /**     * Write a bitmap in the response.     *      * @param lt latitude of placement of upper left corner of bitmap.     * @param ln longitude of placement of upper left corner of bitmap.     * @param image_width width of bitmap.     * @param image_height height of bitmap.     * @param image the java.awt.Image.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @throws InterruptedException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(float lt, float ln, Image image, int image_width,                             int image_height, LinkProperties properties,                             int graphicUpdateMask) throws IOException,            InterruptedException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(lt,                ln,                image,                image_width,                image_height,                properties,                link.dos);    }    /**     * Write a raster in the response.     *      * @param x1 horizontal pixel location of upper left corner of raster.     * @param y1 vertical pixel location of upper left corner of raster.     * @param image Image to place on map.     * @param image_width width of image.     * @param image_height height of image.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @throws InterruptedException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(int x1, int y1, Image image, int image_width,                             int image_height, LinkProperties properties,                             int graphicUpdateMask) throws IOException,            InterruptedException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(x1,                y1,                image,                image_width,                image_height,                properties,                link.dos);    }    /**     * Write a raster in the response.     *      * @param lt latitude of placement of upper left corner of raster.     * @param ln longitude of placement of upper left corner of raster.     * @param offset_x1 horizontal pixel offset of upper left corner of raster.     * @param offset_y1 vertical pixel offset of upper left corner of raster.     * @param image Image to place on map.     * @param image_width width of image.     * @param image_height height of image.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @throws InterruptedException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(float lt, float ln, int offset_x1, int offset_y1,                             Image image, int image_width, int image_height,                             LinkProperties properties, int graphicUpdateMask)            throws IOException, InterruptedException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(lt,                ln,                offset_x1,                offset_y1,                image,                image_width,                image_height,                properties,                link.dos);    }    /**     * Write a raster in the response.     *      * @param lt latitude of placement of upper left corner of raster.     * @param ln longitude of placement of upper left corner of raster.     * @param w width of raster.     * @param h height of raster.     * @param pix integer image pixel data.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(float lt, float ln, int w, int h, int[] pix,                             LinkProperties properties, int graphicUpdateMask)            throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(lt, ln, w, h, pix, properties, link.dos);    }    /**     * Write a raster in the response.     *      * @param x1 horizontal pixel location of upper left corner of raster.     * @param y1 vertical pixel location of upper left corner of raster.     * @param w width of raster.     * @param h height of raster.     * @param pix integer image pixel data.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(int x1, int y1, int w, int h, int[] pix,                             LinkProperties properties, int graphicUpdateMask)            throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(x1, y1, w, h, pix, properties, link.dos);    }    /**     * Write a raster in the response.     *      * @param lt latitude of placement of upper left corner of bitmap.     * @param ln longitude of placement of upper left corner of bitmap.     * @param offset_x1 horizontal pixel offset of upper left corner of raster.     * @param offset_y1 vertical pixel offset of upper left corner of raster.     * @param w width of raster.     * @param h height of raster.     * @param pix integer image pixel data.     * @param properties description of drawing attributes.     * @param graphicUpdateMask the mask describing the graphic update.     * @throws IOException     * @see com.bbn.openmap.layer.link.LinkRaster     */    public void updateRaster(float lt, float ln, int offset_x1, int offset_y1,                             int w, int h, int[] pix,                             LinkProperties properties, int graphicUpdateMask)            throws IOException {        writeGraphicGestureHeader(graphicUpdateMask);        LinkRaster.write(lt,                ln,                offset_x1,                offset_y1,

⌨️ 快捷键说明

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