- 浏览: 413973 次
- 性别:
- 来自: 郑州
文章分类
最新评论
-
yan789654100:
先谢谢了,去研究一下
Java网络围棋游戏源码含大厅,仿QQ游戏 -
dan0773:
火狐里面用不了
梅花雨日历控件源码,及应用实例 -
左手边:
挺好的不错
Velocity教程 -
liuxuejin:
既然是教程,连个例子都没有!顶多是个笔记而已
Velocity教程 -
sky_pearl:
泪奔……求大厅代码!!!
Java网络围棋游戏源码含大厅,仿QQ游戏
Google Earth Hello World 示例
<html> <head> <title>Hello Google Earth!</title> <!-- *** Replace the key below below with your own API key, available at http://code.google.com/apis/maps/signup.html *** --> <script src="http://www.google.com/jsapi?key=ABQIAAAA4ZZxnijCQhlZlf57igoGExTwM0brOpm-All5BF6PoaKBxRWWERR0mYEVnCnlZi8Qmoq3uoivZ9cIgQ";></script> <script> //google.load("earth", "1"); google.load('earth', '1'); var ge = null; /** Init */ function init() { google.earth.setLanguage('zh_CN'); google.earth.createInstance("map3d", initCallback, failureCallback); } /* Call Back */ function initCallback(object) { ge = object; /* LAYER_BORDERS - shows country and area borders, and place labels for cities, states, countries, oceans, etc LAYER_BUILDINGS - 3D buildings LAYER_BUILDINGS_LOW_RESOLUTION - grey buildings (non-photorealistic). Note that this does not contain copies of photorealistic buildings; rather, it includes buildings that do not yet exist in the photorealistic buildings layer. As photorealistic versions of grey buildings are created, the buildings will be added to LAYER_BUILDINGS and removed from LAYER_BUILDINGS_LOW_RESOLUTION. LAYER_ROADS - displays roads and road names LAYER_TERRAIN - 3D terrain LAYER_TREES - 3D tree models */ ge.getLayerRoot().enableLayerById(ge.LAYER_BORDERS, true); ge.getLayerRoot().enableLayerById(ge.LAYER_BUILDINGS, true); ge.getLayerRoot().enableLayerById(ge.LAYER_BUILDINGS_LOW_RESOLUTION, true); ge.getLayerRoot().enableLayerById(ge.LAYER_ROADS, true); ge.getLayerRoot().enableLayerById(ge.LAYER_TERRAIN, true); ge.getLayerRoot().enableLayerById(ge.LAYER_TREES, true); /* ge.VISIBILITY_SHOW ge.VISIBILITY_HIDE ge.VISIBILITY_AUTO */ ge.getNavigationControl().setVisibility(ge.VISIBILITY_AUTO); //parseKmlString(ge); ge.getWindow().setVisibility(true); } function parseKmlString(ge){ var kmlString = '' + '<?xml version="1.0" encoding="UTF-8"?>' + '<kml xmlns="http://www.opengis.net/kml/2.2">' + '<Document>' + ' <Camera>' + ' <longitude>-122.444633</longitude>' + ' <latitude>37.801899</latitude>' + ' <altitude>139.629438</altitude>' + ' <heading>-70.0</heading>' + ' <tilt>75</tilt>' + ' </Camera>' + ' <Placemark>' + ' <name>Placemark from KML string</name>' + ' <Point>' + ' <coordinates>-122.448425,37.802907,0</coordinates>' + ' </Point>' + ' </Placemark>' + '</Document>' + '</kml>'; var kmlObject = ge.parseKml(kmlString); ge.getFeatures().appendChild(kmlObject); } /*CallBack*/ function failureCallback(object) { } var placemark = ge.createPlacemark(''); placemark.setName("You are at Google"); ge.getFeatures().appendChild(placemark); // Create style map for placemark var normal = ge.createIcon(''); normal.setHref('http://maps.google.com/mapfiles/kml/paddle/red-circle.png'); var iconNormal = ge.createStyle(''); iconNormal.getIconStyle().setIcon(normal); var highlight = ge.createIcon(''); highlight.setHref('http://maps.google.com/mapfiles/kml/paddle/red-circle.png'); var iconHighlight = ge.createStyle(''); iconHighlight.getIconStyle().setIcon(highlight); var styleMap = ge.createStyleMap(''); styleMap.setNormalStyle(iconNormal); styleMap.setHighlightStyle(iconHighlight); placemark.setStyleSelector(styleMap); // Create point var la = ge.getView().copyAsLookAt(ge.ALTITUDE_RELATIVE_TO_GROUND); var point = ge.createPoint(''); point.setLatitude(la.getLatitude()); point.setLongitude(la.getLongitude()); placemark.setGeometry(point); </script> </head> <body onload='init()'; <div> He Nan Qi Xiang </div> <div id='map3d_container' style='border: 1px solid silver; height: 600px; width: 800px;'> <div id='map3d' style='height: 100%;'></div> </div> </body> </html>
发表评论
-
Extjs 验证使用
2012-08-10 10:16 994/** * 用户表单面板 */ Ext.def ... -
使用ext的store.load 之后然后使用store.getCount 值为零解决办法
2012-07-13 09:12 1231使用ext的store.load(),之后然后使用store. ... -
什么样的cms系统算是强大
2012-07-10 17:41 988现在建站的cms系统层出不穷。从简单的到功能复杂的。从功 ... -
OpenCV背景去除的几种方法(转)
2012-07-02 10:15 8603OpenCV背景去除的几种方法 1、肤色侦测法 肤 ... -
error: command 'mt.exe' failed with exit status 31
2012-06-18 17:39 2425python setup.py build_ext -i ... -
MyBatis 3 + Spring3 多数据源配置
2012-02-27 14:50 1380详细内容地址: 终于把 MyBatis 3 和 Sp ... -
DB2 分页查询方法,查询top N 条记录
2011-01-13 18:50 28101. db2分页查询sql select * f ... -
Birt 中的通过Script加入调试输出SQL语句代码
2010-11-18 15:54 1411用Brit制作报表时可通过在Script脚本中加入以下代码输出 ... -
TSM - Creating an include-exclude list (optional)
2010-06-09 11:00 1559Creating an include-exclude l ... -
TSM - Configuring the Web client
2010-06-09 10:51 933Configuring the Web client The ... -
Linux下 Tsm 服务器、客户端安装配置全过程
2010-05-17 10:06 1751系统环境:LINUX AS5 存储:IBM DS400 ... -
安装DB2补丁步骤
2009-10-27 17:30 17651. 通过运行 su - root ... -
WAS 6.0.2.9 部署应用使用过滤器问题解决办法
2009-08-05 16:07 1441支撑环境: IBM WebSphere Application ... -
MyEclipse5.5GA配置Websphere V6.1 全过程(详细版)
2009-07-16 13:32 1284转载自:http://blog.chinaunix.net/u ... -
WebSphere Application Server 6.0.2.9 配置 SqlServer 2000 SP2时出错问题解决
2009-07-15 12:56 1835WebSphere Application Server 6. ... -
WAS 5.1 部署应用容器属性配置
2009-07-07 14:52 2545WAS 5.1 部署应用容器属性配置 引用地址:http:/ ... -
Struts JSR168 Portlet using the ITIM API
2009-06-02 19:29 981Leveraging the IBM Tivoli Ident ... -
ITIM API
2009-06-02 19:22 941ITIM API http://publib.boulder ... -
打开IBM WebSphere Portal trace 收集
2009-05-26 10:37 1430Collecting login-specific infor ... -
解决HP-UX 11iv3 nfs 共享时无法写文件问题方法
2009-05-14 17:21 1934解决在两台HP小机上用SAM 配置的NFS 共享之后,moun ...
相关推荐
【标题】"HelloWorld"揭示了这是一个基础的编程示例,通常用于教学目的,让学习者了解如何在特定环境中创建并运行第一个“Hello, World!”程序。在Windows CE(简称WinCE)操作系统中,这样的程序有助于新手理解基本...
6. 编写和运行示例:一旦所有组件都安装完毕,你可以从osgEarth的示例代码开始学习,了解如何加载地形、添加标记、处理KML数据等。 7. 开发自定义应用:根据项目需求,利用osgEarth提供的API和工具开发自己的地理...
综上,开发者可以通过这些资源学习如何使用Google Maps API来创建个性化地图应用,从基础的"Hello World"程序到复杂的地图交互功能,都能得到详尽的指导和支持。在实践中不断学习和优化,将使你的地图应用更加出色。
在Linux环境下,只需在终端输入`make`命令,`makefile`就会按照设定自动编译并链接所有的源文件,生成`helloworld`可执行文件。 总结一下,`helloworldmakefile.rar`的内容是一个简单的C++程序,展示了如何使用`...
// 输出: HelloWorld! ``` - **参数**: `string1` 和 `string2` 分别是要连接的两个字符串对象。 - **返回值**: 连接后的字符串。 ##### 2. 替换字符串 (`string.replace`) ```javascript // 在字符串中替换指定...
- 广泛应用:被众多知名企业和组织使用,例如 Autodesk、Google Earth、Adobe Photoshop Album 等。 - 支持多种编程语言:通过语言绑定,可以使用除了 C++ 之外的语言进行开发。 #### 二、Qt的历史与发展 - **...
**示例**: 如果`expression = "Hello World"`且`find = "World"`,那么`Replace(expression, find, "Earth")`的结果是`"Hello Earth"`。 --- ##### 10. Trim([left|right|both] string) **功能**: 删除字符串两端...
它被众多知名公司和组织采用,包括Autodesk、Google Earth、KDE、Adobe Photoshop Album、欧洲太空总署、OPIE、Skype、VLC媒体播放器、三星集团、飞利浦、Panasonic以及VirtualBox等。 Qt支持多种编程语言,除了C++...
string input = "Hello, world!"; string output = regex.Replace(input, "Greetings, Earth!"); ``` 在这个例子中,"Hello, world!"会被替换为"Greetings, Earth!"。 7. **分组构造器**: 如果正则表达式模式...
<img src="http://maps.google.com/staticmap?center=49.841272,18.290248&zoom=10&size=140x70" alt="Hello, World of Google Maps"> ``` - **参数解释**: - `center`:指定地图中心的经纬度坐标。 - `zoom`...
// 输出 "hello, world" ``` ##### 2. `indexOf()` `indexOf()` 方法返回字符串中一个子串第一次出现的位置索引,如果找不到,则返回 `-1`。 ```javascript let str = "hello, world"; let index = str.indexOf(...
KML是一种用于地理空间数据的XML标准,常用于Google Earth和Google Maps。这可能涉及到CoreLocation和MapKit框架的使用,以及网络请求和数据解析。 2. **DigiClock**: DigiClock可能是一个数字时钟应用,展示了如何...
下面是一个简单的Hello World示例,展示了如何使用Google地图API快速创建并展示一个带有标记的地图: ```javascript <script type="text/javascript" src="http://ditu.google.cn/maps?file=api&v=2&key=ABQc"> ;...
- **“Hello World”示例**:作为初学者的第一个项目,用户可以从简单的“Hello World”程序开始,通过这种方式熟悉代码编辑器的基本操作流程。 综上所述,本文档详细介绍了GEE技术的基础知识、编程语言选择、API...
$arr = array("Hello" => "Hi", "world" => "earth"); echo strtr("Hello world",$arr). "<hr/>"; echo strtr("假如省略,则用法内部字符编码","内部","外部"). " "; $arr = array("假如" => "若", "则" => ...
text = "<a>hello<a><b>world<b>" match = re.search(r"(.*?)<b>", text) if match: print(match.group(1)) # 输出:hello ``` 这里,`.*?` 表示尽可能多地匹配任何字符(除了换行符),直到遇到 `<b>`。由于使用...
这个“HelloWorld”程序就是一个很好的示例,教你如何在网页中集成X3D内容。下面将详细解释这个过程以及涉及的相关技术。 首先,`index.htm`是主HTML文件,它包含了引入X3D内容的代码。在HTML5中,X3D通常通过X3DOM...
HelloWorld应用示例 使用Scriptlets编写简单的脚本代码,快速实现一个HelloWorld应用,展示Script#的基本用法。 ##### 2. 构建Script组件 在Script#类库中创建Script组件,这有助于组织和重用代码,提高代码的...