World Wind Java开发之十一——加载热点信息(仿Google Earth)(转)
在GE的图层中有一个照片图层,在浏览时可以看到各地的一些图片,我们称之为热点信息,如下图所示:
再来看下本文的实现效果:
效果是不是很像呢,其实实现这个很简单,参照examples中的Balloons就可以很容易的实现,这里我自己封装了BalloonUtil类便于复用,代码很简单都加了注释就不再一一展开了,直接附上源代码,有看不明白的地方可以留言交流哈。
- /**
- * @Copyright 2014-2020 @��˶
- **/
- package edu.whu.vge.util;
- import gov.nasa.worldwind.avlist.AVKey;
- import gov.nasa.worldwind.awt.WorldWindowGLCanvas;
- import gov.nasa.worldwind.geom.Position;
- import gov.nasa.worldwind.layers.RenderableLayer;
- import gov.nasa.worldwind.render.AbstractBrowserBalloon;
- import gov.nasa.worldwind.render.BalloonAttributes;
- import gov.nasa.worldwind.render.BasicBalloonAttributes;
- import gov.nasa.worldwind.render.GlobeBrowserBalloon;
- import gov.nasa.worldwind.render.PointPlacemark;
- import gov.nasa.worldwind.render.Size;
- import gov.nasa.worldwind.util.Logging;
- import gov.nasa.worldwind.util.WWIO;
- import gov.nasa.worldwindx.examples.util.BalloonController;
- import gov.nasa.worldwindx.examples.util.HotSpotController;
- import java.io.InputStream;
- /**
- *
- * @项目名称:SMartScope
- * @类名称:BalloonsUtil
- * @类描述:
- * @创建人:刘硕
- * @创建时间:2015年2月3日 下午4:56:26
- * @修改备注:
- * @版本:
- */
- public class BalloonsUtil
- {
- private double balloonLat; // 气球纬度
- private double balloonLon; // 气球经度
- private String balloonContentPath; // html文件路径
- private String balloonName; // 气球名称
- protected HotSpotController hotSpotController;
- protected BalloonController balloonController;
- /**
- *
- * 创建一个新的实例 BalloonsUtil.
- *
- * @param balloonLat
- * @param balloonLon
- * @param balloonContentPath
- * @param balloonName
- */
- public BalloonsUtil(double balloonLat, double balloonLon,
- String balloonContentPath, String balloonName)
- {
- super();
- this.balloonLat = balloonLat;
- this.balloonLon = balloonLon;
- this.balloonContentPath = balloonContentPath;
- this.balloonName = balloonName;
- }
- /**
- * s
- *
- * @方法名称: makeBrowserBalloon ;
- * @方法描述: 生成Balloon标记图层 ;
- * @参数 :@param windowGLCanvas
- * @参数 :@return
- * @返回类型: RenderableLayer ;
- * @创建人:刘硕;
- * @创建时间:2015年2月3日 下午5:01:03;
- * @throws
- */
- public RenderableLayer makeBrowserBalloon(WorldWindowGLCanvas windowGLCanvas)
- {
- // ע��balloonController
- this.hotSpotController = new HotSpotController(windowGLCanvas);
- this.balloonController = new BalloonController(windowGLCanvas);
- RenderableLayer layer = new RenderableLayer();
- layer.setName(balloonName);
- String htmlString = null;
- InputStream contentStream = null;
- try
- {
- // 读取html文件内容
- contentStream = WWIO.openFileOrResourceStream(balloonContentPath,
- null);
- htmlString = WWIO.readStreamToString(contentStream, null);
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- finally
- {
- WWIO.closeStream(contentStream, balloonContentPath);
- }
- if (htmlString == null) htmlString = Logging.getMessage(
- "generic.ExceptionAttemptingToReadFile", balloonContentPath);
- // 创建一个GlobeBrowserBalloon
- Position balloonPosition = Position.fromDegrees(balloonLat, balloonLon);
- AbstractBrowserBalloon balloon = new GlobeBrowserBalloon(htmlString,
- balloonPosition);
- // 设置GlobeBrowserBalloon属性
- BalloonAttributes attrs = new BasicBalloonAttributes();
- attrs.setSize(new Size(Size.NATIVE_DIMENSION, 0d, null,
- Size.NATIVE_DIMENSION, 0d, null));
- balloon.setAttributes(attrs);
- // 将GlobeBrowserBalloon与PointPlacemark关联起来
- PointPlacemark placemark = new PointPlacemark(balloonPosition);
- placemark.setLabelText(balloonName);
- placemark.setValue(AVKey.BALLOON, balloon);
- layer.addRenderable(balloon);
- layer.addRenderable(placemark);
- return layer;
- }
- public double getBalloonLat()
- {
- return balloonLat;
- }
- public void setBalloonLat(double balloonLat)
- {
- this.balloonLat = balloonLat;
- }
- public double getBalloonLon()
- {
- return balloonLon;
- }
- public void setBalloonLon(double balloonLon)
- {
- this.balloonLon = balloonLon;
- }
- public String getBalloonContentPath()
- {
- return balloonContentPath;
- }
- public void setBalloonContentPath(String balloonContentPath)
- {
- this.balloonContentPath = balloonContentPath;
- }
- public String getBalloonName()
- {
- return balloonName;
- }
- public void setBalloonName(String balloonName)
- {
- this.balloonName = balloonName;
- }
- }
调用的时候,只需键入以下代码即可:
- String htmlPath = System.getProperty("user.dir")
- + "\\src\\edu\\whu\\vge\\data\\whu.html";
- BalloonsUtil balloonsUtil = new BalloonsUtil(30.5271,
- 114.3604, htmlPath, "我在这里");
- wwPanel.getWorldWindowGLCanvas()
- .getModel()
- .getLayers()
- .add(balloonsUtil.makeBrowserBalloon(wwPanel
- .getWorldWindowGLCanvas()));
另外,附上whu.html网页的代码以供大家参考。
- <html>
- <head>
- <style type='text/css'>
- html, body {
- margin: 0 0;
- width: 100%;
- height: 100%;
- overflow: hidden
- }
- a:link {
- color: #0000CD;
- text-decoration: underline
- }
- table {
- font-family: verdana, 黑体, sans-serif;
- font-size: 12px;
- color: #4169E1;
- border-width: 1px;
- border-color: #a9c6c9;
- border-collapse: collapse
- }
- th {
- background-color: #4169E1;
- color: #fff
- }
- tr {
- background-color: #d4e3e5
- }
- td {
- border-width: 1px;
- border-style: solid;
- border-color: #a9c6c9
- }
- </style>
- <title></title>
- </head>
- <body>
- <table border='0'>
- <tr>
- <th align='center' colspan='2'>武汉大学</th>
- </tr>
- <tr>
- <td rowspan='7'><a href="http://www.whu.edu.cn/index.htm"> <img
- border='0' alt='' width='300px' height='225px'
- src='http://news.whu.edu.cn/_mediafile/whu_news/2015/02/02/1eq0euop1q.jpg'>
- </a></td>
- </tr>
- </table>
- </body>
- </html>
World Wind Java开发之十一——加载热点信息(仿Google Earth)(转)的更多相关文章
- World Wind Java开发之十三——加载Geoserver发布的WMS服务(转)
这篇是转载的平常心博客,原地址见:http://www.v5cn.cn/?p=171 1.WMSTiledImageLayer类说明 一个WMSTiledImageLayer类对象只能对应一个WMS发 ...
- World Wind Java开发之六——解析shape文件(转)
http://blog.csdn.net/giser_whu/article/details/41647117 最近一直忙于导师项目的事情了,几天没更新了,昨天和今天研究了下WWJ解析shp文件的源代 ...
- [转]World Wind Java开发之四——搭建本地WMS服务器
在提供地理信息系统客户端时,NASA还为用户提供了开源的WMS Server 服务器应用:World Wind WMS Server.利用这个应用,我们可以架设自己的WMS服务并使用自己的数据(也支持 ...
- java在windows下加载dll
java在类中加载动态链接库文件. 类文件中: static { System.loadLibrary("dll文件"); } dll文件在工程的包路径下.例如:pro/bin/h ...
- 混合开发(一)——WebView开发高级技巧之加载网页以及JavaScript,加载进度条
混合开发(一)--WebView开发高级技巧之加载网页以及JavaScript,加载进度条 现在关于混合开发也越来越多了,很多人喜欢跟随,比如HB,比如RN,其实这东西很早就有这么一个概念了,而且说实 ...
- Java类编译、加载、和执行机制
Java类编译.加载.和执行机制 标签: java 类加载 类编译 类执行 机制 0.前言 个人认为,对于JVM的理解,主要是两大方面内容: Java类的编译.加载和执行. JVM的内存管理和垃圾回收 ...
- 【记录】尝试用QEMU模拟ARM开发板去加载并运行Uboot,kernel,rootfs【转】
转自:https://www.crifan.com/try_use_qemu_emulate_arm_board_to_load_and_run_uboot_kernel_rootfs/ [背景] 手 ...
- 微信小程序开发动感十足的加载动画--都在这里!
代码地址如下:http://www.demodashi.com/demo/14242.html 一.前期准备工作 软件环境:微信开发者工具 官方下载地址:https://mp.weixin.qq.co ...
- java——Class、动态加载
Class和Object混淆了? Object: 任何类都是Object类的子类 Class: 任何类都是Class的实例对象 Class可以说是一种特殊的类,它表示的是类类型,Object仍然是Cl ...
随机推荐
- JVM 零散知识
年轻代大小选择: 响应时间优先的应用: 尽可能设大,直到接近系统的最低响应时间限制.在此种情况下,年轻代收集发生的频率也是最小的.同时,减少到达年老代的对象. 吞吐量优先的应用: 尽可能的设置大,可能 ...
- CF 984C Finite or not? (数论)
CF 984C Finite or not? (数论) 给定T(T<=1e5)组数据,每组数据给出十进制表示下的整数p,q,b,求问p/q在b进制意义下是否是有限小数. 首先我们先把p/q约分一 ...
- 避免picture图片无法删除,提示正在被其他进程使用
pictureBox1.Image = Image.FromStream(ByteToStream(SetImageToByteArray(cutImgPath))); #region 将文件转换成流 ...
- 安装篇:MySQL系列之一
环境:CentOS6.9系统安装MariaDB-10.2.15 一.yum包管理器安装MariaDB-server 1)配置yum源(MariaDB官方源) [root@centos6 ~]# v ...
- Jenkins+maven+gitlab+shell实现项目自动化部署
确认jdk , maven,git这些已经在服务器上搭建成功,gitlab使用的是公司服务也没有进行搭建 下面是jenkins的两种搭建方式 1. 第一种比较简单下载对应jenkins.wa ...
- linux shell 脚本 历史文件清理脚本,按天,按月,清理前N天的历史文件,删除指定大小历史文件,历史文件归档清理
不知道大家那有没有要清理的这个事情.需要清理目录历史文件.可能后续也会有很多其他地方需要清理历史文件,可能会用到. 我这两天空闲写了个脚本,清理比较方便,有要进行清理的大量历史文件的话可以用. 脚本用 ...
- python_魔法方法(三):__str__()和__repr__()
使用python的魔法方法和time模块定制一个计时器的类 1.用time模块里的localtime()方法获取时间2.time.localtime返回struct_time格式3.表现你的类:__s ...
- 011 Container With Most Water 盛最多水的容器
给定 n 个非负整数 a1,a2,…,an,每个数代表坐标中的一个点 (i, ai) .画 n 条垂直线,使得垂直线 i 的两个端点分别为 (i, ai) 和 (i, 0).找出其中的两条线,使得它们 ...
- Microsoft JET Database Engine (0x80004005)未指定的错误解决
Microsoft JET Database Engine (0x80004005)未指定的错误,这个错误只有在使用Access数据库时才能出现 出现以上问题,可以使用以下步骤进行解决问题: 1.系统 ...
- (转)Linux: dirname、basename命令详解
Linux: dirname.basename命令详解 原文:http://blog.sina.com.cn/s/blog_3f63916f010143vo.html 一.dirname指令 1.功能 ...