Revision 43494

View differences:

tags/org.gvsig.desktop-2.0.203/org.gvsig.desktop.compat.cdc/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3

  
4
  <modelVersion>4.0.0</modelVersion>
5
  <artifactId>org.gvsig.desktop.compat.cdc</artifactId>
6
  <packaging>pom</packaging>
7
  <name>${project.artifactId}</name>
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.desktop</artifactId>
11
      <version>2.0.203</version>
12
  </parent>
13

  
14
  <build>
15
      <plugins>
16
    
17
      </plugins>
18
  </build>
19

  
20
  <modules>
21
      <module>org.gvsig.i18n</module>
22
      <module>org.gvsig.compat</module>
23
      <module>org.gvsig.projection</module>
24
      <module>org.gvsig.fmap.geometry</module>
25
      <module>org.gvsig.remoteclient</module>
26
      <module>org.gvsig.fmap.dal</module>
27
      <module>org.gvsig.fmap.mapcontext</module>
28
      <module>org.gvsig.metadata.basic</module>
29
  </modules>
30

  
31
  <description>This project group the gvSIG libraries that haven java 1.4 compatibility.</description>
32
</project>
0 33

  
tags/org.gvsig.desktop-2.0.203/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/java/org/gvsig/remoteclient/taskplanning/retrieving/URLRetrieveTest.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.taskplanning.retrieving;
25

  
26
import java.io.File;
27

  
28
import junit.framework.TestCase;
29

  
30
import org.gvsig.remoteclient.taskplanning.IQueue;
31
import org.gvsig.remoteclient.taskplanning.IRunnableTask;
32
/**
33
 * 
34
 * @author jaume
35
 *
36
 */
37
public class URLRetrieveTest extends TestCase {
38
	private final static String tempDirectoryPath = System.getProperty("java.io.tmpdir")+"tmp-andami";
39
	IQueue queue;
40
	IRunnableTask task1, task2, task3, task4;
41
	boolean finished1, finished2, finished3, finished4;
42
	RetrieveListener listener1 = new RetrieveListener() {
43
		public void transferEventReceived(RetrieveEvent event) {
44
			int e = event.getType();
45
			printMessage("listener1", event.getType());
46
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED || e == RetrieveEvent.REQUEST_CANCELLED )
47
				finished1 = true;
48
		}
49
	};
50
	
51
	String protocol = URLRequest.HTTP;
52
	String host1 = "192.168.0.223";
53
	String page1 = "cgi-bin/mapserv_46.exe?map=c:\\ms4w\\Apache\\cgi-bin\\demo.map&&REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=comunidades&SRS=EPSG:23030&BBOX=507522.0,4154976.282477341,942309.0,4552983.717522658&WIDTH=332&HEIGHT=305&FORMAT=image/png&STYLES=&TRANSPARENT=TRUE";
54
	URLRequest request1;
55
	
56
	String host2 = "localhost";
57
	String page2 = "aegCapabilities1.3.xml";
58
	URLRequest request2;
59
	RetrieveListener listener2 = new RetrieveListener() {
60
		public void transferEventReceived(RetrieveEvent event) {
61
			int e = event.getType();
62
			printMessage("listener2", event.getType());
63
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED || e==RetrieveEvent.REQUEST_CANCELLED )
64
				finished2 = true;
65

  
66
		}
67
	};
68
	
69
	String host3 = "localhost";
70
	String page3 = "avalencia.ecw";
71
	URLRequest request3;
72
	RetrieveListener listener3 = new RetrieveListener() {
73
		public void transferEventReceived(RetrieveEvent event) {
74
			int e = event.getType();
75
			printMessage("listener3", event.getType());
76
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED  || e == RetrieveEvent.REQUEST_CANCELLED )
77
				finished3 = true;
78

  
79
		}
80
	};
81
	
82
	String host4 = "192.168.0.223";
83
	String page4 = "prueba.rar";
84
	URLRequest request4;
85
	RetrieveListener listener4 = new RetrieveListener() {
86
		public void transferEventReceived(RetrieveEvent event) {
87
			int e = event.getType();
88
			printMessage("listener4", event.getType());
89
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED  || e == RetrieveEvent.REQUEST_CANCELLED )
90
				finished4 = true;
91

  
92
		}
93
	};
94
	{
95
		cleanFiles();
96
	}
97
	private static void cleanFiles(){
98
		try{
99
			File tempDirectory = new File(tempDirectoryPath);
100
			
101
			File[] files = tempDirectory.listFiles();
102
			if (files!=null) {
103
				for (int i = 0; i < files.length; i++) {
104
					// s?lo por si en un futuro se necesitan crear directorios temporales
105
					files[i].delete();
106
				}
107
			}
108
			tempDirectory.delete();
109
		} catch (Exception e) {	}
110
	}
111
	
112
	
113
	public void setUp() {
114
		File tmpDir = new File(tempDirectoryPath);
115
		if (!tmpDir.exists())
116
			tmpDir.mkdir();
117
		finished1 = finished2 = finished3 = finished4 = false;
118
		System.out.println("\n\n\nSetting up test..");
119
		queue = new RetrieveQueue("http://192.168.0.223/cgi-bin/mapserv_46.exe?map=c:\\ms4w\\Apache\\cgi-bin\\demo.map");
120
		
121
		request1 = new URLRequest();
122
		// http://192.168.0.223/cgi-bin/mapserv_46.exe?map=c:\\ms4w\\Apache\\cgi-bin\\demo.map&&REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=comunidades&SRS=EPSG:23030&BBOX=507522.0,4154976.282477341,942309.0,4552983.717522658&WIDTH=332&HEIGHT=305&FORMAT=image/png&STYLES=&TRANSPARENT=TRUE
123
		request1.setProtocol(protocol);
124
		request1.setHost(host1);
125
		request1.setFile(page1);
126
		request1.setFileName(tempDirectoryPath+File.separator+"task1");
127
		request1.setRequestType(URLRequest.GET);
128
		task1 = new URLRetrieveTask(request1, listener1); 
129
		
130
		request2 = new URLRequest();
131
		// http://localhost/aegCapabilities1.3.xml
132
		request2.setProtocol(protocol);
133
		request2.setHost(host2);
134
		request2.setFile(page2);
135
		request2.setFileName(tempDirectoryPath+File.separator+"task2");
136
		request2.setRequestType(URLRequest.GET);
137
		task2 = new URLRetrieveTask(request2, listener2);
138
		
139
		request3 = new URLRequest();
140
		// http://localhost/avalencia.ecw
141
		request3.setProtocol(protocol);
142
		request3.setHost(host3);
143
		request3.setFile(page3);
144
		request3.setFileName(tempDirectoryPath+File.separator+"task3");
145
		request3.setRequestType(URLRequest.GET);
146
		task3 = new URLRetrieveTask(request3, listener3);
147
		
148
		request4 = new URLRequest();
149
		// http://192.168.0.223/prueba.rar
150
		request4.setProtocol(protocol);
151
		request4.setHost(host4);
152
		request4.setFile(page4);
153
		request4.setFileName(tempDirectoryPath+File.separator+"task4");
154
		request4.setRequestType(URLRequest.GET);
155
		
156
		task4 = new URLRetrieveTask(request4, listener4);
157
		
158
	}
159
	
160
	public void testRetrieve() {
161
		queue.put(task1);
162
		queue.put(task2);
163
		
164
		while(!queue.isEmpty()) {		
165
		}
166
	}
167
	
168
	public void testCancelling() {
169
		long time = System.currentTimeMillis();
170
		
171
		queue.put(task1);
172
		queue.put(task2);
173
		boolean more = true;
174
		while (!queue.isEmpty()) {
175
			if (more && System.currentTimeMillis()-time > 1000) { // wait 1 seconds and cancel
176
				task2.cancel();
177
				more = false;
178
			}
179
		}
180
	}
181
	
182
	public void testRequestManager() {
183
		System.out.println("tests parallel downloading from different servers");
184
		request3.setFileName("task3");
185
		// http://localhost/avalencia.ecw
186
		
187
		request4.setFileName("task4");
188
		// http://192.168.0.223/prueba.rar
189
		RequestManager manager = RequestManager.getInstance();
190
		manager.addURLRequest(request3, listener3);
191
		manager.addURLRequest(request4, listener4);
192
		manager.addURLRequest(request4, listener1);
193
		while (!(finished1 && finished3 && finished4)) { 
194
			
195
		}
196
	}
197
	
198
	public void testCocurrentTransfers() {
199
		finished1 = finished2 = finished3 = finished4 = false;
200
		System.out.println("tests to merge two or more equivalent transfers into one");
201
		RequestManager manager = RequestManager.getInstance();
202
		//manager.removeURLRequest(request3);
203
		request3.setFileName("task3");
204
		
205
		manager.addURLRequest(request3, listener1);
206
		manager.addURLRequest(request3, listener2);
207
		manager.addURLRequest(request3, listener3);
208
		
209
		manager.addURLRequest(request3, listener4);
210
		while (!(finished1 && finished2 && finished3 && finished4)) { 
211
			
212
		}
213
	}
214
	
215
	public void printMessage(String who, int code) {
216
		switch (code) {
217
		case RetrieveEvent.CONNECTING:
218
			System.out.println(who+": connecting");
219
			break;
220
		case RetrieveEvent.TRANSFERRING:
221
			System.out.println(who+": transferring");
222
			break;
223
		case RetrieveEvent.REQUEST_CANCELLED:
224
			System.out.println(who+": cancelled");
225
			break;
226
		case RetrieveEvent.REQUEST_FINISHED:
227
			System.out.println(who+": finished");
228
			break;
229
		case RetrieveEvent.REQUEST_FAILED:
230
			System.err.println(who+": failed");
231
			break;
232
		case RetrieveEvent.NOT_STARTED:
233
			System.out.println(who+": not started");
234
			break;
235
		case RetrieveEvent.POSTPROCESSING:
236
			System.out.println(who+": postprocessing");
237
			break;
238
		}
239
	}
240
}
0 241

  
tags/org.gvsig.desktop-2.0.203/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/java/org/gvsig/remoteclient/AllTests.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient;
25

  
26
import junit.framework.Test;
27
import junit.framework.TestSuite;
28

  
29
public class AllTests {
30

  
31
	public static Test suite() {
32
		TestSuite suite = new TestSuite("Test for org.gvsig.remoteClient");
33
		//$JUnit-BEGIN$
34
		suite.addTestSuite(Test.class);
35

  
36
		//commented until there is a way to simulate the needed servers.
37
		//suite.addTestSuite(URLRetrieveTest.class);
38
//		suite.addTestSuite(WCSProtocolHandler_1_0_0Test.class);
39

  
40
		//$JUnit-END$
41
		return suite;
42
	}
43

  
44
}
0 45

  
tags/org.gvsig.desktop-2.0.203/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/kml/KML_PlaceMarket.kml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2013 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 3
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<kml xmlns="http://earth.google.com/kml/2.1">
28
  <Placemark>
29
    <name>gggg</name>
30
    <description>Attached to the ground. Intelligently places itself 
31
       at the height of the underlying terrain.</description>
32
    <Point>
33
      <coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
34
    </Point>
35
  </Placemark>
36
</kml>
tags/org.gvsig.desktop-2.0.203/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/kml/gcb-feed.kml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2013 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 3
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<kml xmlns="http://earth.google.com/kml/2.1">
28
<NetworkLink>
29
	<name>Gombe Chimpanzee Blog</name>
30
	<open>1</open>
31
	<flyToView>1</flyToView>
32
	<Url>
33
		<href>http://www.janegoodall.org/news/gombe-blog/feed/gcb-feed2.kml</href>
34
		<refreshMode>onInterval</refreshMode>
35
		<refreshInterval>21600</refreshInterval>
36
	</Url>
37
</NetworkLink>
38
</kml>
tags/org.gvsig.desktop-2.0.203/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/kml/Discovery_Networks.kml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2013 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 3
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<kml xmlns="http://earth.google.com/kml/2.1">
28
<Document>
29
	<name>Discovery Networks</name>
30
	<open>1</open>
31
	<description>Zoom into real life.</description>
32
	<StyleMap id="discoveryPOIMap">
33
		<Pair>
34
			<key>normal</key>
35
			<styleUrl>#discoveryPOIMapMouseout</styleUrl>
36
		</Pair>
37
		<Pair>
38
			<key>highlight</key>
39
			<styleUrl>#discoveryPOIMapMouseover</styleUrl>
40
		</Pair>
41
	</StyleMap>
42
	<Style id="discoveryPOIMapMouseout">
43
		<IconStyle>
44
			<scale>1.2</scale>
45
			<Icon>
46
				<href>http://www.discovery.com/common/sgallery/googleearth/globe_white.png</href>
47
				<w>32</w>
48
				<h>32</h>
49
			</Icon>
50
		</IconStyle>
51
		<BalloonStyle>
52
			<color>ffa56a</color>
53
			<text>&lt;img src=&quot;http://www.discovery.com/utilities/googleearth/logos/discoverynetworks.gif&quot; width=&quot;100&quot; height=&quot;47&quot; border=&quot;0&quot; alt=&quot;discovery communications inc&quot; /&gt;&lt;br /&gt;&lt;font face=&quot;Verdana&quot; size=&quot;3&quot; color=&quot;#FFFFFF&quot;&gt;$[description]&lt;/font&gt;&lt;font face=&quot;Verdana&quot; size=&quot;3&quot; color=&quot;#000000&quot;&gt;Copyright &amp;copy; 2006 Discovery Communications Inc.&lt;/font&gt;</text>
54
		</BalloonStyle>
55
	</Style>
56
	<Style id="discoveryPOIMapMouseover">
57
		<IconStyle>
58
			<Icon>
59
				<href>http://www.discovery.com/common/sgallery/googleearth/globe_white.png</href>
60
				<w>32</w>
61
				<h>32</h>
62
			</Icon>
63
		</IconStyle>
64
		<BalloonStyle>
65
			<color>ffa56a</color>
66
			<text>&lt;img src=&quot;http://www.discovery.com/utilities/googleearth/logos/discoverynetworks.gif&quot; width=&quot;100&quot; height=&quot;47&quot; border=&quot;0&quot; alt=&quot;discovery communications inc&quot; /&gt;&lt;br /&gt;&lt;font face=&quot;Verdana&quot; size=&quot;3&quot; color=&quot;#FFFFFF&quot;&gt;$[description]&lt;/font&gt;&lt;font face=&quot;Verdana&quot; size=&quot;3&quot; color=&quot;#000000&quot;&gt;Copyright &amp;copy; 2006 Discovery Communications Inc.&lt;/font&gt;</text>
67
		</BalloonStyle>
68
		
69
			<scale>1.4</scale>
70
	</Style>
71
	<Folder>
72
		<name>Discovery National Parks Tour</name>
73
		<open>1</open>
74
		<description>Watch exclusive video of America&apos;s scenic wonders.</description>
75
		<Placemark>
76
			<name>Glacier National Park</name>
77
			<Snippet maxLines="2">
78
Glacier			</Snippet>
79
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920284&bctid=86232580"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/glacierpark.jpg" width="320" height="240" border="0" alt="Glacier National Park" /></a><br />
80
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
81
&nbsp;<br />
82
<font size="4"><strong>Inside Glacier National Park</strong></font><br />
83
Explore through video the gem of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920284&bctid=86232580">Big Sky Country</a>.<br />
84
&nbsp;<br />
85
<strong>More Glacier videos:</strong><br />
86
Watch how <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920284&bctid=86232578">glaciers shaped</a> the park.<br />
87
Learn Glacier's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920284&bctid=16938885">history and legends</a>.<br />
88
Check out the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920284&bctid=86232576">"Going to the Sun" Road</a>.<br />
89
&nbsp;<br />]]></description>
90
			<LookAt>
91
				<longitude>-113.654822</longitude>
92
				<latitude>48.756675</latitude>
93
				<altitude>0</altitude>
94
				<range>9444</range>
95
				<tilt>0</tilt>
96
				<heading>0</heading>
97
			</LookAt>
98
			<styleUrl>#discoveryPOIMap</styleUrl>
99
			<Point>
100
				<coordinates>-113.654822,48.756675,0</coordinates>
101
			</Point>
102
		</Placemark>
103
		<Placemark>
104
			<name>Yellowstone National Park</name>
105
			<Snippet maxLines="2">
106
Yellowstone			</Snippet>
107
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16934806&bctid=17197352"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/yellowstonepark.jpg" width="320" height="240" border="0" alt="Yellowstone National Park" /></a><br />
108
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
109
&nbsp;<br />
110
<font size="4"><strong>The Wonder of Yellowstone</strong></font><br />
111
Take a video tour of America's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16934806&bctid=17197352">first national park</a>.<br />
112
&nbsp;<br />
113
<strong>More Yellowstone videos:</strong><br />
114
Check out the park's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16934806&bctid=17197351">hydrothermal wonders</a>.<br />
115
<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16934806&bctid=86232579">Watch wildlife roaming</a> the park's forests and roads.<br />
116
Find out why <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16934806&bctid=16927314">fires are so critical</a> for Yellowstone.<br />
117
&nbsp;<br />]]></description>
118
			<LookAt>
119
				<longitude>-110.8334056</longitude>
120
				<latitude>44.4596722</latitude>
121
				<altitude>0</altitude>
122
				<range>5191</range>
123
				<tilt>0</tilt>
124
				<heading>0</heading>
125
			</LookAt>
126
			<styleUrl>#discoveryPOIMap</styleUrl>
127
			<Point>
128
				<coordinates>-110.8334056,44.4596722,0</coordinates>
129
			</Point>
130
		</Placemark>
131
		<Placemark>
132
			<name>Arches National Park</name>
133
			<Snippet maxLines="2">
134
Arches			</Snippet>
135
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920785&bctid=37046645"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/archespark.jpg" width="320" height="240" border="0" alt="Arches National Park" /></a><br />
136
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
137
&nbsp;<br />
138
<font size="4"><strong>Explore Amazing Arches</strong></font><br />
139
See what created the park's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920785&bctid=37046645">stunning rock formations</a>.<br />
140
&nbsp;<br />
141
<strong>More Arches videos:</strong><br />
142
Visit the park's most <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920785&bctid=16938865">famous arches</a>.<br />
143
Check out the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920785&bctid=16938853">unearthly terrain</a> of nearby Canyonlands.<br />
144
Explore a geological mystery of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920785&bctid=16938866">Canyonlands</a>.<br />
145
&nbsp;<br />]]></description>
146
			<LookAt>
147
				<longitude>-109.5625</longitude>
148
				<latitude>38.7083278</latitude>
149
				<altitude>0</altitude>
150
				<range>9109</range>
151
				<tilt>0</tilt>
152
				<heading>0</heading>
153
			</LookAt>
154
			<styleUrl>#discoveryPOIMap</styleUrl>
155
			<Point>
156
				<coordinates>-109.5625,38.7083278,0</coordinates>
157
			</Point>
158
		</Placemark>
159
		<Placemark>
160
			<name>Mt. Rushmore National Park</name>
161
			<Snippet maxLines="2">
162
Mt. Rushmore			</Snippet>
163
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924793&bctid=86232577"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/mountrushmore.jpg" width="320" height="240" border="0" alt="Mount Rushmore National Park" /></a><br />
164
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
165
&nbsp;<br />
166
<font size="4"><strong>Up on Mt. Rushmore</strong></font><br />
167
Get up close to the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924793&bctid=86232577">colossal stone carvings</a>.<br />
168
&nbsp;<br />
169
<strong>More Mt. Rushmore videos:</strong><br />
170
See how <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924793&bctid=17197362">flaws in the rock face</a> changed the design.<br />
171
Watch how dynamite was used to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924793&bctid=17197359">carve the mountain</a>.<br />
172
Get the story on what it was like to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924793&bctid=17197360">work on Rushmore</a>.<br />
173
&nbsp;<br />]]></description>
174
			<LookAt>
175
				<longitude>-103.45983056</longitude>
176
				<latitude>43.87894722</latitude>
177
				<altitude>0</altitude>
178
				<range>2722</range>
179
				<tilt>0</tilt>
180
				<heading>0</heading>
181
			</LookAt>
182
			<styleUrl>#discoveryPOIMap</styleUrl>
183
			<Point>
184
				<coordinates>-103.45983056,43.87894722000001,0</coordinates>
185
			</Point>
186
		</Placemark>
187
		<Placemark>
188
			<name>Everglades National Park</name>
189
			<Snippet maxLines="2">
190
Everglades			</Snippet>
191
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920784&bctid=17041216"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/evergladespark.jpg" width="320" height="240" border="0" alt="Everglades National Park" /></a><br />
192
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
193
&nbsp;<br />
194
<font size="4"><strong>Inside the Everglades</strong></font><br />
195
See what makes Florida's large national park <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920784&bctid=17041216">so unique</a>.<br />
196
&nbsp;<br />
197
<strong>More Everglades videos:</strong><br />
198
Watch how <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920784&bctid=16938871">cypress trees</a> fuel the park's ecosystem.<br />
199
Enter the world of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920784&bctid=16927376">manatees</a>.<br />
200
Go inside the park's huge <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16920784&bctid=16927364">mangrove forests</a>.<br />
201
&nbsp;<br />]]></description>
202
			<LookAt>
203
				<longitude>-81.0324944</longitude>
204
				<latitude>25.473822</latitude>
205
				<altitude>0</altitude>
206
				<range>31266</range>
207
				<tilt>0</tilt>
208
				<heading>0</heading>
209
			</LookAt>
210
			<styleUrl>#discoveryPOIMap</styleUrl>
211
			<Point>
212
				<coordinates>-81.0324944,25.473822,0</coordinates>
213
			</Point>
214
		</Placemark>
215
		<Placemark>
216
			<name>Pt. Reyes National Seashore</name>
217
			<Snippet maxLines="2">
218
Point Reyes			</Snippet>
219
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17013949&bctid=16927304"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/pointreyes.jpg" width="320" height="240" border="0" alt="Point Reyes National Seashore" /></a><br />
220
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
221
&nbsp;<br />
222
<font size="4"><strong>Cruising Point Reyes Seashore</strong></font><br />
223
Visit a park along the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17013949&bctid=16927304">San Andreas Fault</a>.<br />
224
&nbsp;<br />
225
<strong>More Point Reyes videos:</strong><br />
226
Go underneath the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17013949&bctid=16927321">coastal waters</a>.<br />
227
Watch <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17013949&bctid=16927357">sharks and whales</a> near the coast.<br />
228
See the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17013949&bctid=86232574">range of wildlife</a> along the seashore.<br />
229
&nbsp;<br />]]></description>
230
			<LookAt>
231
				<longitude>-122.9917944</longitude>
232
				<latitude>37.99874167</latitude>
233
				<altitude>0</altitude>
234
				<range>7950</range>
235
				<tilt>0</tilt>
236
				<heading>0</heading>
237
			</LookAt>
238
			<styleUrl>#discoveryPOIMap</styleUrl>
239
			<Point>
240
				<coordinates>-122.9917944,37.99874167,0</coordinates>
241
			</Point>
242
		</Placemark>
243
		<Placemark>
244
			<name>Santa Monica Mountains</name>
245
			<Snippet maxLines="2">
246
Santa Monica			</Snippet>
247
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16919791&bctid=16938861"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/santamonica.jpg" width="320" height="240" border="0" alt="Santa Monica Mountains" /></a><br />
248
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
249
&nbsp;<br />
250
<font size="4"><strong>Santa Monica Mountains</strong></font><br />
251
Get a good look at the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16919791&bctid=16938861">largest urban park</a> in America.<br />
252
&nbsp;<br />
253
<strong>More Santa Monica videos:</strong><br />
254
<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16919791&bctid=16938890">Watch the wildlife</a> that roams close to Los Angeles.<br />
255
Find out about the area's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16919791&bctid=16927368">Native-American history</a>.<br />
256
Learn about the women who <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16919791&bctid=17041267">fought for the park</a>.<br />
257
&nbsp;<br />]]></description>
258
			<LookAt>
259
				<longitude>-118.5764389</longitude>
260
				<latitude>34.06768056</latitude>
261
				<altitude>0</altitude>
262
				<range>3428</range>
263
				<tilt>63</tilt>
264
				<heading>150</heading>
265
			</LookAt>
266
			<styleUrl>#discoveryPOIMap</styleUrl>
267
			<Point>
268
				<coordinates>-118.5764389,34.06768056000001,0</coordinates>
269
			</Point>
270
		</Placemark>
271
		<Placemark>
272
			<name>Alaska National Parks</name>
273
			<Snippet maxLines="2">
274
Denali			</Snippet>
275
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16938910&bctid=16927307"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/denali.jpg" width="320" height="240" border="0" alt="Denali" /></a><br />
276
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
277
&nbsp;<br />
278
<font size="4"><strong>Into Alaska</strong></font><br />
279
See the range of Alaska's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16938910&bctid=16927307">spectacular scenery</a>.<br />
280
&nbsp;<br />
281
<strong>More Alaska National Parks videos:</strong><br />
282
<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16938910&bctid=16927318">Explore Denali</a> and the highest peak in America.<br />
283
Watch the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16938910&bctid=16927313">bears of Katmai</a> National Park.<br />
284
Go above the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16938910&bctid=86232575">Arctic Circle</a>.<br />
285
&nbsp;<br />]]></description>
286
			<LookAt>
287
				<longitude>-151.04334166</longitude>
288
				<latitude>63.130722</latitude>
289
				<altitude>0</altitude>
290
				<range>28567</range>
291
				<tilt>63</tilt>
292
				<heading>165</heading>
293
			</LookAt>
294
			<styleUrl>#discoveryPOIMap</styleUrl>
295
			<Point>
296
				<coordinates>-151.04334166,63.13072200000001,0</coordinates>
297
			</Point>
298
		</Placemark>
299
		<Placemark>
300
			<name>Dinosaur National Monument</name>
301
			<Snippet maxLines="2">
302
Dinosaur Park			</Snippet>
303
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17197350&bctid=17041262"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/dinosaurpark.jpg" width="320" height="240" border="0" alt="Dinosaur National Monument" /></a><br />
304
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
305
&nbsp;<br />
306
<font size="4"><strong>Dinosaur National Monument</strong></font><br />
307
Go where <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17197350&bctid=17041262">giant monsters</a> used to roam.<br />
308
&nbsp;<br />
309
<strong>More Dinosaur videos:</strong><br />
310
See what <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17197350&bctid=16927330">geological layers</a> say about the past.<br />
311
Watch the strange creatures of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17197350&bctid=17041234">Triassic Period</a>.<br />
312
Return to the age of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=17197350&bctid=16927296">dinosaur giants</a>.<br />
313
&nbsp;<br />]]></description>
314
			<LookAt>
315
				<longitude>-108.67355833</longitude>
316
				<latitude>40.6918167</latitude>
317
				<altitude>0</altitude>
318
				<range>22976</range>
319
				<tilt>0</tilt>
320
				<heading>0</heading>
321
			</LookAt>
322
			<styleUrl>#discoveryPOIMap</styleUrl>
323
			<Point>
324
				<coordinates>-108.67355833,40.6918167,0</coordinates>
325
			</Point>
326
		</Placemark>
327
		<Placemark>
328
			<name>Carlsbad Caverns</name>
329
			<Snippet maxLines="2">
330
Carlsbad			</Snippet>
331
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924795&bctid=16938844"><img src="http://dsc.discovery.com/utilities/googleearth/nationalparks/gallery/carlsbadcaves.jpg" width="320" height="240" border="0" alt="Carlsbad Caverns" /></a><br />
332
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
333
&nbsp;<br />
334
<font size="4"><strong>Into Carlsbad Caverns</strong></font><br />
335
Enter a stunning <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924795&bctid=16938844">underground world</a>.<br />
336
&nbsp;<br />
337
<strong>More Carlsbad videos:</strong><br />
338
Watch the nightly swarm of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924795&bctid=16938886">Carlsbad's bats</a>.<br />
339
See how <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=16924795&bctid=17041293">sulfuric acid</a> helped form the caverns.<br />
340
&nbsp;<br />]]></description>
341
			<LookAt>
342
				<longitude>-104.441056</longitude>
343
				<latitude>32.176991666</latitude>
344
				<altitude>0</altitude>
345
				<range>4694</range>
346
				<tilt>0</tilt>
347
				<heading>0</heading>
348
			</LookAt>
349
			<styleUrl>#discoveryPOIMap</styleUrl>
350
			<Point>
351
				<coordinates>-104.441056,32.176991666,0</coordinates>
352
			</Point>
353
		</Placemark>
354
		<Placemark>
355
			<name>Great Smoky Mountains</name>
356
			<Snippet maxLines="2">
357
Great Smoky Mountains			</Snippet>
358
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=67269066"><img src="http://dsc.discovery.com/utilities/googleearth/us_landmarks/gallery/greatsmokymtns.jpg" width="320" height="240" border="0" alt="Great Smoky Mountains" /></a><br />
359
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
360
&nbsp;<br />
361
<table cellpadding="0" cellspacing="0" border="0" width="320">
362
<tr>
363
	<td width="210" align="left" valign="top">
364
<font size="4"><strong>Great Smoky Mountains</strong></font><br />
365
Take a look at America's most <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=67269066">popular national park</a>.<br />
366
	</td>
367
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
368
</tr>
369
</table>
370
&nbsp;<br />]]></description>
371
			<LookAt>
372
				<longitude>-83.60833890000001</longitude>
373
				<latitude>35.99110833</latitude>
374
				<altitude>0</altitude>
375
				<range>225211</range>
376
				<tilt>0</tilt>
377
				<heading>0</heading>
378
			</LookAt>
379
			<styleUrl>#discoveryPOIMap</styleUrl>
380
			<Point>
381
				<coordinates>-83.60833890000002,35.99110833,0</coordinates>
382
			</Point>
383
		</Placemark>
384
		<Placemark>
385
			<name>Hoover Dam</name>
386
			<Snippet maxLines="2">
387
Hoover Dam			</Snippet>
388
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=37046646"><img src="http://dsc.discovery.com/utilities/googleearth/us_landmarks/gallery/hooverdam.jpg" width="320" height="240" border="0" alt="Hoover Dam" /></a><br />
389
<font size="3" color="#000000">Picture:  iStockphoto |</font><br />
390
&nbsp;<br />
391
<table cellpadding="0" cellspacing="0" border="0" width="320">
392
<tr>
393
	<td width="210" align="left" valign="top">
394
<font size="4"><strong>Inside Hoover Dam</strong></font><br />
395
Explore this model of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=37046646">American ingenuity</a>.<br />
396
	</td>
397
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
398
</tr>
399
</table>
400
&nbsp;<br />]]></description>
401
			<LookAt>
402
				<longitude>-114.73770278</longitude>
403
				<latitude>36.01605833</latitude>
404
				<altitude>0</altitude>
405
				<range>1086</range>
406
				<tilt>0</tilt>
407
				<heading>0</heading>
408
			</LookAt>
409
			<styleUrl>#discoveryPOIMap</styleUrl>
410
			<Point>
411
				<coordinates>-114.73770278,36.01605833,0</coordinates>
412
			</Point>
413
		</Placemark>
414
		<Placemark>
415
			<name>Niagara Falls</name>
416
			<Snippet maxLines="2">
417
Niagara Falls			</Snippet>
418
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=37046644"><img src="http://dsc.discovery.com/utilities/googleearth/us_landmarks/gallery/niagrafalls.jpg" width="320" height="240" border="0" alt="Niagra Falls" /></a><br />
419
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
420
&nbsp;<br />
421
<table cellpadding="0" cellspacing="0" border="0" width="320">
422
<tr>
423
	<td width="210" align="left" valign="top">
424
<font size="4"><strong>Over Niagara Falls</strong></font><br />
425
Get a close-up view of this <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=37046644">natural wonder</a>.<br />
426
	</td>
427
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
428
</tr>
429
</table>
430
&nbsp;<br />
431
<strong>More Niagara Falls video:</strong><br />
432
Take a <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147268&bctid=37046643">wild ride</a> on the river.<br />
433
&nbsp;<br />]]></description>
434
			<LookAt>
435
				<longitude>-79.07533056</longitude>
436
				<latitude>43.07725834</latitude>
437
				<altitude>0</altitude>
438
				<range>2371</range>
439
				<tilt>0</tilt>
440
				<heading>0</heading>
441
			</LookAt>
442
			<styleUrl>#discoveryPOIMap</styleUrl>
443
			<Point>
444
				<coordinates>-79.07533056,43.07725834000001,0</coordinates>
445
			</Point>
446
		</Placemark>
447
	</Folder>
448
	<Folder>
449
		<name>American Cities Tour</name>
450
		<description>See exclusive video of major American cities.</description>
451
		<Placemark>
452
			<name>New York</name>
453
			<Snippet maxLines="2">
454
New York			</Snippet>
455
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818959&bctid=16861717"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/newyork.jpg" width="320" height="240" border="0" alt="New York" /></a><br />
456
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
457
&nbsp;<br />
458
<table cellpadding="0" cellspacing="0" border="0" width="320">
459
<tr>
460
	<td width="210" align="left" valign="top">
461
<font size="4"><strong>Inside New York</strong></font><br />
462
Follow the rise of the city's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818959&bctid=16861717">skyscrapers</a>.<br />
463
	</td>
464
	<td width="110" align="right" valign="top"><!--</td><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" />--></td>
465
</tr>
466
</table>
467
&nbsp;<br />
468
<strong>More New York videos:</strong><br />
469
Explore the secrets of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818959&bctid=16861748">Central Park</a>.<br />
470
Find out about the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818959&bctid=16861750">bright lights</a> of the big city.<br />
471
See how the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818959&bctid=67269177">Brooklyn Bridge</a> became an icon.<br />
472
&nbsp;<br />]]></description>
473
			<LookAt>
474
				<longitude>-73.9881833</longitude>
475
				<latitude>40.7522944</latitude>
476
				<altitude>0</altitude>
477
				<range>14264</range>
478
				<tilt>0</tilt>
479
				<heading>0</heading>
480
			</LookAt>
481
			<styleUrl>#discoveryPOIMap</styleUrl>
482
			<Point>
483
				<coordinates>-73.9881833,40.7522944,0</coordinates>
484
			</Point>
485
		</Placemark>
486
		<Placemark>
487
			<name>Washington DC</name>
488
			<Snippet maxLines="2">
489
Washington DC			</Snippet>
490
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164241&bctid=24465932"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/washingtondc.jpg" width="320" height="240" border="0" alt="Washington DC" /></a><br />
491
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
492
&nbsp;<br />
493
<table cellpadding="0" cellspacing="0" border="0" width="320">
494
<tr>
495
	<td width="210" align="left" valign="top">
496
<font size="4"><strong>Take a Washington, D.C., Tour</strong></font><br />
497
See what it means to go to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164241&bctid=24465932">The Mall</a>.<br />
498
	</td>
499
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
500
</tr>
501
</table>
502
&nbsp;<br />
503
<strong>More Washington, D.C., videos:</strong><br />
504
Enter the world of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164241&bctid=24465939">Smithsonian museums</a>.<br />
505
Take a video tour of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164241&bctid=24465938">Lincoln Memorial</a>.<br />
506
Get the inside story of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164241&bctid=24465934">Washington Monument</a>.<br />
507
&nbsp;<br />]]></description>
508
			<LookAt>
509
				<longitude>-77.0366944</longitude>
510
				<latitude>38.89500833</latitude>
511
				<altitude>0</altitude>
512
				<range>6220</range>
513
				<tilt>0</tilt>
514
				<heading>0</heading>
515
			</LookAt>
516
			<styleUrl>#discoveryPOIMap</styleUrl>
517
			<Point>
518
				<coordinates>-77.0366944,38.89500833,0</coordinates>
519
			</Point>
520
		</Placemark>
521
		<Placemark>
522
			<name>Las Vegas</name>
523
			<Snippet maxLines="2">
524
Las Vegas			</Snippet>
525
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818958&bctid=17041132"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/vegas.jpg" width="320" height="240" border="0" alt="Las Vegas" /></a><br />
526
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
527
&nbsp;<br />
528
<table cellpadding="0" cellspacing="0" border="0" width="320">
529
<tr>
530
	<td width="210" align="left" valign="top">
531
<font size="4"><strong>The Marvels of Las Vegas</strong></font><br />
532
Get the scoop on <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818958&bctid=17041132">Bellagio's</a> amazing fountain.<br />
533
	</td>
534
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
535
</tr>
536
</table>
537
&nbsp;<br />
538
<strong>More Las Vegas videos:</strong><br />
539
Find out what makes the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818958&bctid=17041122">Luxor</a> so special.<br />
540
See how Vegas' <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818958&bctid=17041131">"Eiffel Tower"</a> came to be.<br />
541
Check out the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818958&bctid=17041244">Shark Reef</a> at Mandalay Bay.<br />
542
&nbsp;<br />]]></description>
543
			<LookAt>
544
				<longitude>-115.1729389</longitude>
545
				<latitude>36.100911</latitude>
546
				<altitude>0</altitude>
547
				<range>2595</range>
548
				<tilt>0</tilt>
549
				<heading>0</heading>
550
			</LookAt>
551
			<styleUrl>#discoveryPOIMap</styleUrl>
552
			<Point>
553
				<coordinates>-115.1729389,36.100911,0</coordinates>
554
			</Point>
555
		</Placemark>
556
		<Placemark>
557
			<name>Seattle</name>
558
			<Snippet maxLines="2">
559
Seattle			</Snippet>
560
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818960&bctid=32951094"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/seattle.jpg" width="320" height="240" border="0" alt="Seattle" /></a><br />
561
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
562
&nbsp;<br />
563
<table cellpadding="0" cellspacing="0" border="0" width="320">
564
<tr>
565
	<td width="210" align="left" valign="top">
566
<font size="4"><strong>A Taste of Seattle</strong></font><br />
567
Make a video visit to the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818960&bctid=32951094">Space Needle</a>.<br />
568
	</td>
569
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
570
</tr>
571
</table>
572
&nbsp;<br />
573
<strong>More Seattle videos:</strong><br />
574
Get a taste of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818960&bctid=32951091">Pike Place Market</a>.<br />
575
Take a trip to nearby <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818960&bctid=32951092">Mount St. Helens</a>.<br />
576
Stop by <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818960&bctid=32951090">Ye Olde Curiosity Shoppe</a>.<br />
577
&nbsp;<br />]]></description>
578
			<LookAt>
579
				<longitude>-122.330844</longitude>
580
				<latitude>47.6063944</latitude>
581
				<altitude>0</altitude>
582
				<range>4694</range>
583
				<tilt>0</tilt>
584
				<heading>0</heading>
585
			</LookAt>
586
			<styleUrl>#discoveryPOIMap</styleUrl>
587
			<Point>
588
				<coordinates>-122.330844,47.60639440000001,0</coordinates>
589
			</Point>
590
		</Placemark>
591
		<Placemark>
592
			<name>Miami</name>
593
			<Snippet maxLines="2">
594
Miami			</Snippet>
595
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=70349676&bctid=70349669"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/miami.jpg" width="320" height="240" border="0" alt="Miami" /></a><br />
596
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
597
&nbsp;<br />
598
<table cellpadding="0" cellspacing="0" border="0" width="320">
599
<tr>
600
	<td width="210" align="left" valign="top">
601
<font size="4"><strong>Explore Old and New Miami</strong></font><br />
602
Go back to the era of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=70349676&bctid=170349669">Art Deco</a>.<br />
603
	</td>
604
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
605
</tr>
606
</table>
607
&nbsp;<br />
608
<strong>More Miami videos:</strong><br />
609
Visit one of the city's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=70349676&bctid=70349672">famous hotels</a>.<br />
610
Find out what turned around <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=70349676&bctid=170349672">South Beach</a>.<br />
611
Spend some time in <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=70349676&bctid=16938886">Little Havana</a>.<br />
612
&nbsp;<br />]]></description>
613
			<LookAt>
614
				<longitude>-80.19390833</longitude>
615
				<latitude>25.77390833</latitude>
616
				<altitude>0</altitude>
617
				<range>4694</range>
618
				<tilt>0</tilt>
619
				<heading>0</heading>
620
			</LookAt>
621
			<styleUrl>#discoveryPOIMap</styleUrl>
622
			<Point>
623
				<coordinates>-80.19390833000001,25.77390833,0</coordinates>
624
			</Point>
625
		</Placemark>
626
		<Placemark>
627
			<name>San Francisco</name>
628
			<Snippet maxLines="2">
629
San Francisco			</Snippet>
630
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818957&bctid=44410202"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/sanfran.jpg" width="320" height="240" border="0" alt="San Francisco" /></a><br />
631
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
632
&nbsp;<br />
633
<table cellpadding="0" cellspacing="0" border="0" width="320">
634
<tr>
635
	<td width="210" align="left" valign="top">
636
<font size="4"><strong>Savor San Francisco</strong></font><br />
637
Explore the roots of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818957&bctid=44410202">City by the Bay</a>.<br />
638
	</td>
639
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
640
</tr>
641
</table>
642
&nbsp;<br />
643
<strong>More San Francisco videos:</strong><br />
644
Go inside <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818957&bctid=44410281">Alcatraz</a>.<br />
645
Meet the people who take care of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818957&bctid=44410208">famous bridge</a>.<br />
646
Take a tour of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60818957&bctid=44410206">Chinatown</a>.<br />
647
&nbsp;<br />]]></description>
648
			<LookAt>
649
				<longitude>-122.4008944</longitude>
650
				<latitude>37.79390278</latitude>
651
				<altitude>0</altitude>
652
				<range>4694</range>
653
				<tilt>0</tilt>
654
				<heading>0</heading>
655
			</LookAt>
656
			<styleUrl>#discoveryPOIMap</styleUrl>
657
			<Point>
658
				<coordinates>-122.4008944,37.79390278,0</coordinates>
659
			</Point>
660
		</Placemark>
661
		<Placemark>
662
			<name>Chicago</name>
663
			<Snippet maxLines="2">
664
Chicago			</Snippet>
665
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124703&bctid=44410292"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/chicago.jpg" width="320" height="240" border="0" alt="Chicago" /></a><br />
666
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
667
&nbsp;<br />
668
<table cellpadding="0" cellspacing="0" border="0" width="320">
669
<tr>
670
	<td width="210" align="left" valign="top">
671
<font size="4"><strong>Check Out Chicago</strong></font><br />
672
Take in the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124703&bctid=44410292">skyscrapers of Chicago</a>.<br />
673
	</td>
674
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
675
</tr>
676
</table>
677
&nbsp;<br />
678
<strong>More Chicago videos:</strong><br />
679
See how African-Americans <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124703&bctid=44410305">shaped its culture</a>.<br />
680
Spend some time in historic <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124703&bctid=44410293">Wrigley Field</a>.<br />
681
&nbsp;<br />]]></description>
682
			<LookAt>
683
				<longitude>-87.633225</longitude>
684
				<latitude>41.880589</latitude>
685
				<altitude>0</altitude>
686
				<range>4694</range>
687
				<tilt>0</tilt>
688
				<heading>0</heading>
689
			</LookAt>
690
			<styleUrl>#discoveryPOIMap</styleUrl>
691
			<Point>
692
				<coordinates>-87.633225,41.880589,0</coordinates>
693
			</Point>
694
		</Placemark>
695
		<Placemark>
696
			<name>Philadelphia</name>
697
			<Snippet maxLines="2">
698
Philadelphia			</Snippet>
699
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124657&bctid=44410205"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/philadelphia.jpg" width="320" height="240" border="0" alt="Philadelphia" /></a><br />
700
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
701
&nbsp;<br />
702
<table cellpadding="0" cellspacing="0" border="0" width="320">
703
<tr>
704
	<td width="210" align="left" valign="top">
705
<font size="4"><strong>Fun in Philadelphia</strong></font><br />
706
Get a <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124657&bctid=44410205">taste</a> of Philly.<br />
707
	</td>
708
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
709
</tr>
710
</table>
711
&nbsp;<br />
712
<strong>More Philadelphia videos:</strong><br />
713
Take a cruise down <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124657&bctid=44410207">Boathouse Row</a>.<br />
714
Celebrate with the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124657&bctid=44410204">Mummers</a>.<br />
715
&nbsp;<br />]]></description>
716
			<LookAt>
717
				<longitude>-75.16417800000001</longitude>
718
				<latitude>39.9522278</latitude>
719
				<altitude>0</altitude>
720
				<range>13641</range>
721
				<tilt>0</tilt>
722
				<heading>0</heading>
723
			</LookAt>
724
			<styleUrl>#discoveryPOIMap</styleUrl>
725
			<Point>
726
				<coordinates>-75.16417800000001,39.9522278,0</coordinates>
727
			</Point>
728
		</Placemark>
729
		<Placemark>
730
			<name>Los Angeles</name>
731
			<Snippet maxLines="2">
732
Los Angeles			</Snippet>
733
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132263&bctid=67269029"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/losangeles.jpg" width="320" height="240" border="0" alt="Los Angeles" /></a><br />
734
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
735
&nbsp;<br />
736
<table cellpadding="0" cellspacing="0" border="0" width="320">
737
<tr>
738
	<td width="210" align="left" valign="top">
739
<font size="4"><strong>The LA Scene</strong></font><br />
740
Learn about <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132263&bctid=67269029">the city that shouldn't be</a>.<br />
741
	</td>
742
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
743
</tr>
744
</table>
745
&nbsp;<br />
746
<strong>More Los Angeles videos:</strong><br />
747
Discover the two sides of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132263&bctid=67269028">Venice Beach</a>.<br />
748
Take to the road in <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132263&bctid=67269061">a set of cool wheels</a>.<br />
749
&nbsp;<br />]]></description>
750
			<LookAt>
751
				<longitude>-118.2490083</longitude>
752
				<latitude>34.04505278</latitude>
753
				<altitude>0</altitude>
754
				<range>17236</range>
755
				<tilt>0</tilt>
756
				<heading>0</heading>
757
			</LookAt>
758
			<styleUrl>#discoveryPOIMap</styleUrl>
759
			<Point>
760
				<coordinates>-118.2490083,34.04505278,0</coordinates>
761
			</Point>
762
		</Placemark>
763
		<Placemark>
764
			<name>Boston</name>
765
			<Snippet maxLines="2">
766
Boston			</Snippet>
767
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164235&bctid=44410302"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/boston.jpg" width="320" height="240" border="0" alt="Boston" /></a><br />
768
<font size="3" color="#000000">Picture: iStockphoto |</font><br />
769
&nbsp;<br />
770
<table cellpadding="0" cellspacing="0" border="0" width="320">
771
<tr>
772
	<td width="210" align="left" valign="top">
773
<font size="4"><strong>Discover Boston</strong></font><br />
774
Find the many ways to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164235&bctid=44410302">explore the city</a>.<br />
775
	</td>
776
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
777
</tr>
778
</table>
779
&nbsp;<br />
780
<strong>More Boston videos:</strong><br />
781
Sample the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164235&bctid=44410301">foods of Boston</a>.<br />
782
Visit the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44164235&bctid=44410303">oldest ballpark</a> in America.<br />
783
&nbsp;<br />]]></description>
784
			<LookAt>
785
				<longitude>-71.05678611</longitude>
786
				<latitude>42.35593056</latitude>
787
				<altitude>0</altitude>
788
				<range>9156</range>
789
				<tilt>0</tilt>
790
				<heading>0</heading>
791
			</LookAt>
792
			<styleUrl>#discoveryPOIMap</styleUrl>
793
			<Point>
794
				<coordinates>-71.05678611,42.35593056,0</coordinates>
795
			</Point>
796
		</Placemark>
797
		<Placemark>
798
			<name>Denver</name>
799
			<Snippet maxLines="2">
800
Denver			</Snippet>
801
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160729&bctid=44410291"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/denver.jpg" width="320" height="240" border="0" alt="Denver" /></a><br />
802
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
803
&nbsp;<br />
804
<table cellpadding="0" cellspacing="0" border="0" width="320">
805
<tr>
806
	<td width="210" align="left" valign="top">
807
<font size="4"><strong>Dive into Denver</strong></font><br />
808
Get to the heart of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160729&bctid=44410291">Mile High City</a>.<br />
809
	</td>
810
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
811
</tr>
812
</table>
813
&nbsp;<br />
814
<strong>More Denver videos:</strong><br />
815
Climb aboard the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160729&bctid=44410296">ski train</a>.<br />
816
Fly into the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160729&bctid=44410294">iconic airport</a>.<br />
817
Visit the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160729&bctid=44410295">Hammond's Candies Factory</a>.<br />
818
&nbsp;<br />]]></description>
819
			<LookAt>
820
				<longitude>-104.9890361</longitude>
821
				<latitude>39.74380278</latitude>
822
				<altitude>0</altitude>
823
				<range>7563</range>
824
				<tilt>0</tilt>
825
				<heading>0</heading>
826
			</LookAt>
827
			<styleUrl>#discoveryPOIMap</styleUrl>
828
			<Point>
829
				<coordinates>-104.9890361,39.74380278,0</coordinates>
830
			</Point>
831
		</Placemark>
832
		<Placemark>
833
			<name>San Diego</name>
834
			<Snippet maxLines="2">
835
San Diego			</Snippet>
836
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132261&bctid=67269030"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/sandiego.jpg" width="320" height="240" border="0" alt="San Diego" /></a><br />
837
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
838
&nbsp;<br />
839
<table cellpadding="0" cellspacing="0" border="0" width="320">
840
<tr>
841
	<td width="210" align="left" valign="top">
842
<font size="4"><strong>Go Wild in San Diego</strong></font><br />
843
Get up close to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132261&bctid=67269030">San Diego's animals</a>.<br />
844
	</td>
845
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
846
</tr>
847
</table>
848
&nbsp;<br />
849
<strong>More San Diego videos:</strong><br />
850
Get the lowdown on the city's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132261&bctid=67269022">surf scene</a>.<br />
851
Hop aboard the city's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132261&bctid=67269024">historic ships</a>.<br />
852
Check out a <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44132261&bctid=67269026">tequila restaurant/museum</a>.<br />
853
&nbsp;<br />]]></description>
854
			<LookAt>
855
				<longitude>-117.1650139</longitude>
856
				<latitude>32.71605278</latitude>
857
				<altitude>0</altitude>
858
				<range>8736</range>
859
				<tilt>0</tilt>
860
				<heading>0</heading>
861
			</LookAt>
862
			<styleUrl>#discoveryPOIMap</styleUrl>
863
			<Point>
864
				<coordinates>-117.1650139,32.71605278,0</coordinates>
865
			</Point>
866
		</Placemark>
867
		<Placemark>
868
			<name>Atlanta</name>
869
			<Snippet maxLines="2">
870
Atlanta			</Snippet>
871
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160833&bctid=67269182"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/atlanta.jpg" width="320" height="240" border="0" alt="Atlanta" /></a><br />
872
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
873
&nbsp;<br />
874
<table cellpadding="0" cellspacing="0" border="0" width="320">
875
<tr>
876
	<td width="210" align="left" valign="top">
877
<font size="4"><strong>Discover the Real Atlanta</strong></font><br />
878
Uncover Atlanta's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160833&bctid=67269182">historical past</a>.<br />
879
	</td>
880
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
881
</tr>
882
</table>
883
&nbsp;<br />
884
<strong>More Atlanta videos:</strong><br />
885
Visit the ever-popular <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160833&bctid=67269174">Stone Mountain Park</a>.<br />
886
Follow the footsteps of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160833&bctid=67269176">Martin Luther King Jr</a>.<br />
887
&nbsp;<br />]]></description>
888
			<LookAt>
889
				<longitude>-84.38874167</longitude>
890
				<latitude>33.75485</latitude>
891
				<altitude>0</altitude>
892
				<range>7438</range>
893
				<tilt>0</tilt>
894
				<heading>0</heading>
895
			</LookAt>
896
			<styleUrl>#discoveryPOIMap</styleUrl>
897
			<Point>
898
				<coordinates>-84.38874167,33.75485,0</coordinates>
899
			</Point>
900
		</Placemark>
901
	</Folder>
902
	<Folder>
903
		<name>European Cities Tour</name>
904
		<description>Watch exclusive video of the great cities of Europe.</description>
905
		<Placemark>
906
			<name>Paris</name>
907
			<Snippet maxLines="2">
908
Paris			</Snippet>
909
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124689&bctid=16938845"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/paris.jpg" width="320" height="240" border="0" alt="Paris" /></a><br />
910
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
911
&nbsp;<br />
912
<table cellpadding="0" cellspacing="0" border="0" width="320">
913
<tr>
914
	<td width="210" align="left" valign="top">
915
<font size="4"><strong>Explore Paris</strong></font><br />
916
Go inside the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124689&bctid=16938845">markets</a> of Paris.<br />
917
	</td>
918
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
919
</tr>
920
</table>
921
&nbsp;<br />
922
<strong>More Paris videos:</strong><br />
923
Make a video visit to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124689&bctid=16938869">Notre Dame</a>.<br />
924
Get a taste of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124689&bctid=16938854">city's bistros</a>.<br />
925
Take in the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44124689&bctid=16938874">fashion</a> of Paris.<br />
926
&nbsp;<br />]]></description>
927
			<LookAt>
928
				<longitude>2.3508389</longitude>
929
				<latitude>48.8567</latitude>
930
				<altitude>0</altitude>
931
				<range>4694</range>
932
				<tilt>0</tilt>
933
				<heading>0</heading>
934
			</LookAt>
935
			<styleUrl>#discoveryPOIMap</styleUrl>
936
			<Point>
937
				<coordinates>2.3508389,48.8567,0</coordinates>
938
			</Point>
939
		</Placemark>
940
		<Placemark>
941
			<name>London</name>
942
			<Snippet maxLines="2">
943
London			</Snippet>
944
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147234&bctid=169273404"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/london.jpg" width="320" height="240" border="0" alt="London" /></a><br />
945
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
946
&nbsp;<br />
947
<table cellpadding="0" cellspacing="0" border="0" width="320">
948
<tr>
949
	<td width="210" align="left" valign="top">
950
<font size="4"><strong>A Taste of London</strong></font><br />
951
Take a look around London's <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147234&bctid=169273404">Theater District</a>.<br />
952
	</td>
953
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
954
</tr>
955
</table>
956
&nbsp;<br />
957
<strong>More London videos:</strong><br />
958
Cruise among the celebrities at <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147234&bctid=16927329">Madame Tussaud's</a>.<br />
959
Take a side trip to the neighborhood of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147234&bctid=16927323">Notting Hill</a>.<br />
960
Find out the best way to <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147234&bctid=16927334">get around</a> the city.<br />
961
&nbsp;<br />]]></description>
962
			<LookAt>
963
				<longitude>-0.12618611</longitude>
964
				<latitude>51.50026944</latitude>
965
				<altitude>0</altitude>
966
				<range>4694</range>
967
				<tilt>0</tilt>
968
				<heading>0</heading>
969
			</LookAt>
970
			<styleUrl>#discoveryPOIMap</styleUrl>
971
			<Point>
972
				<coordinates>-0.12618611,51.50026944,0</coordinates>
973
			</Point>
974
		</Placemark>
975
		<Placemark>
976
			<name>Edinburgh</name>
977
			<Snippet maxLines="2">
978
Edinburgh			</Snippet>
979
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147233&bctid=16938844"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/edinburgh.jpg" width="320" height="240" border="0" alt="Edinburgh" /></a><br />
980
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
981
&nbsp;<br />
982
<table cellpadding="0" cellspacing="0" border="0" width="320">
983
<tr>
984
	<td width="210" align="left" valign="top">
985
<font size="4"><strong>The Flavor of Edinburgh</strong></font><br />
986
Take a video tour of <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147233&bctid=16938857">famous castles</a>.<br />
987
	</td>
988
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
989
</tr>
990
</table>
991
&nbsp;<br />
992
<strong>More Edinburgh videos:</strong><br />
993
Go inside the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147233&bctid=16938894">city's pubs</a>.<br />
994
Get in tune with a <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147233&bctid=16938876">Scottish piper</a>.<br />
995
Experience the spectacle of the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44147233&bctid=16938849">Military Tattoo</a>.<br />
996
&nbsp;<br />]]></description>
997
			<LookAt>
998
				<longitude>-3.187567</longitude>
999
				<latitude>55.95014167</latitude>
1000
				<altitude>0</altitude>
1001
				<range>4694</range>
1002
				<tilt>0</tilt>
1003
				<heading>0</heading>
1004
			</LookAt>
1005
			<styleUrl>#discoveryPOIMap</styleUrl>
1006
			<Point>
1007
				<coordinates>-3.187567000000001,55.95014167000001,0</coordinates>
1008
			</Point>
1009
		</Placemark>
1010
		<Placemark>
1011
			<name>Dublin</name>
1012
			<Snippet maxLines="2">
1013
Dublin			</Snippet>
1014
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60819286&bctid=44410312"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/dublin.jpg" width="320" height="240" border="0" alt="Dublin" /></a><br />
1015
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
1016
&nbsp;<br />
1017
<table cellpadding="0" cellspacing="0" border="0" width="320">
1018
<tr>
1019
	<td width="210" align="left" valign="top">
1020
<font size="4"><strong>Enjoy the Traditions of Dublin</strong></font><br />
1021
Visit the <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60819286&bctid=44410312">churches and cathedrals</a> of Dublin.<br />
1022
	</td>
1023
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
1024
</tr>
1025
</table>
1026
&nbsp;<br />
1027
<strong>More Dublin Videos:</strong><br />
1028
Find a <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60819286&bctid=44410319">budget hotel and a good pint</a>.<br />
1029
Walk through <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=60819286&bctid=44410319">Dublin's neighborhoods</a>.<br />
1030
&nbsp;<br />]]></description>
1031
			<LookAt>
1032
				<longitude>-6.24425833</longitude>
1033
				<latitude>53.34385278</latitude>
1034
				<altitude>0</altitude>
1035
				<range>4694</range>
1036
				<tilt>0</tilt>
1037
				<heading>0</heading>
1038
			</LookAt>
1039
			<styleUrl>#discoveryPOIMap</styleUrl>
1040
			<Point>
1041
				<coordinates>-6.24425833,53.34385278,0</coordinates>
1042
			</Point>
1043
		</Placemark>
1044
		<Placemark>
1045
			<name>Brussels</name>
1046
			<Snippet maxLines="2">
1047
Brussels			</Snippet>
1048
			<description><![CDATA[<a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160751&bctid=16927294"><img src="http://dsc.discovery.com/utilities/googleearth/cities/gallery/brussels.jpg" width="320" height="240" border="0" alt="Brussels" /></a><br />
1049
<font size="3" color="#000000">Picture: PhotoDisc |</font><br />
1050
&nbsp;<br />
1051
<table cellpadding="0" cellspacing="0" border="0" width="320">
1052
<tr>
1053
	<td width="210" align="left" valign="top">
1054
<font size="4"><strong>Take a Trip to Brussels</strong></font><br />
1055
Explore the city, including its <a href="http://www.discovery.com/googleearth/?dcitc=w02-530-aj-0000&autoplay=true&bclid=44160751&bctid=16927294">boyish icon</a>.<br />
1056
	</td>
1057
	<td width="110" align="right" valign="top"><img src="http://www.discovery.com/utilities/googleearth/logos/travelchannel.gif" width="100" height="47" border="0" alt="discovery communications inc" /></td>
1058
</tr>
1059
</table>
1060
&nbsp;<br />
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff