<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Maplify.com &#187; Demos</title>
	<atom:link href="http://maplify.com/blog/category/demos/feed/" rel="self" type="application/rss+xml" />
	<link>http://maplify.com/blog</link>
	<description>Making Maps Easy</description>
	<lastBuildDate>Wed, 24 Mar 2010 16:03:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Interactive YouTube Search within Google Earth</title>
		<link>http://maplify.com/blog/2009/02/02/youtube-search/</link>
		<comments>http://maplify.com/blog/2009/02/02/youtube-search/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 18:55:28 +0000</pubDate>
		<dc:creator>Maplify</dc:creator>
				<category><![CDATA[Demos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://maplify.com/blog/?p=13</guid>
		<description><![CDATA[ Thanks to new features in Google Earth 5, we can now provide an interactive YouTube map search capability directly within Google Earth.  Simply specify your keywords and start browsing around the world for matching videos.  You can change your keywords at any time directly from your Google Earth &#8216;Places&#8217; menu.
Get Started
Follow these simple steps [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://maplify.com/blog/wp-content/uploads/2009/02/youtubesearch.jpg" ><img class="alignleft size-thumbnail wp-image-12" title="YouTube Search in Google Earth" src="http://maplify.com/blog/wp-content/uploads/2009/02/youtubesearch-150x150.jpg" alt="" width="150" height="150" /></a> Thanks to new features in Google Earth 5, we can now provide an interactive YouTube map search capability directly within Google Earth.  Simply specify your keywords and start browsing around the world for matching videos.  You can change your keywords at any time directly from your Google Earth &#8216;Places&#8217; menu.</p>
<p><strong>Get Started</strong></p>
<p>Follow these simple steps to get started:</p>
<ol>
<li>Download and Install Google Earth 5 if you haven&#8217;t already from <a href="http://earth.google.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/earth.google.com');" target="_blank">http://earth.google.com</a></li>
<li>Create a starter query at the <a href="http://maplify.com/tools/youtube/" >Maplify YouTube Map Search Page</a></li>
<li>Get your Google Earth network link by clicking the &#8216;Get Google Earth File&#8217; button</li>
<li>Open the network link in Google Earth and browse away</li>
</ol>
<p>To change your keywords in Google Earth, just click on the &#8216;Maplify YouTube Query Control&#8217; link in your Google Earth places menu, update your keywords, and move the map to refresh the query.</p>
<p>When moving the map, the YouTube layer will update roughly 5 seconds after you&#8217;ve stopped moving or zooming.</p>
]]></content:encoded>
			<wfw:commentRss>http://maplify.com/blog/2009/02/02/youtube-search/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create a Simple MoveEnd Event Listener for the Google Earth API</title>
		<link>http://maplify.com/blog/2008/11/21/earthapi-moveend/</link>
		<comments>http://maplify.com/blog/2008/11/21/earthapi-moveend/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 20:52:00 +0000</pubDate>
		<dc:creator>Maplify</dc:creator>
				<category><![CDATA[Demos]]></category>
		<category><![CDATA[Google Earth API]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://maplify.com/blog/?p=8</guid>
		<description><![CDATA[The Google Earth API provides a rich toolset for developers to create custom content and interfaces within Google Earth&#8217;s rich 3D world.  For existing Google Maps developers, many of the Earth API&#8217;s methods are similar and previous Google Maps mashups can be ported &#8211; but not all.
While working on an upcoming project, we discovered that [...]]]></description>
			<content:encoded><![CDATA[<p>The <a title="Google Code Page - Earth API" href="http://code.google.com/apis/earth" onclick="javascript:pageTracker._trackPageview('/outbound/article/code.google.com');" target="_blank">Google Earth API</a> provides a rich toolset for developers to create custom content and interfaces within Google Earth&#8217;s rich 3D world.  For existing Google Maps developers, many of the Earth API&#8217;s methods are similar and previous Google Maps mashups can be ported &#8211; but not all.</p>
<p>While working on an upcoming project, we discovered that the current Earth API lacks the nice &#8216;moveend&#8217; event listener found in Google Maps.  With some pointers from the Google Earth team (thanks Mano!), we developed our own simple &#8216;moveend&#8217; listener based on the &#8216;frameend&#8217; event which is supported.</p>
<p><strong>What is &#8216;frameend&#8217;?</strong></p>
<p>frameend is an Earth API event which fires anytime the map image frame is re-rendered (ie when the map view changes).  Unlike the Google Maps &#8216;moveend&#8217; event, the frameend event fires continuously during a move.  This is great for some applications as it gives a nearly continuous event stream, but doesn&#8217;t work so well for functions that you might want to rate limit (like creating custom data based on the view center).</p>
<p>Since we needed to extend frameend in any case, we went ahead and added a few extra parameters that can be adjusted to fine-tune the refresh parameters.  In our new function, you can configure the following:</p>
<ul>
<li>Minimum movement requirements in Latitude or Longitude</li>
<li>Minimum zoom change independent of a Lat/Lon change</li>
<li>Minimum time since last update to rate limit calls to our follow-on function</li>
</ul>
<p><strong>Try It Out and Get the Sample Code:</strong></p>
<p>Try it out with our <a title="Google Earth API MoveEnd Demo" href="http://maplify.com/tutorials/gearthapi/moveend/" >Interactive Google Earth API MoveEnd Event Listener Demo</a> .  You can adjust the default movement thresholds to get a feel for how various settings change the event behavior.  View the page source for a look at the sample code implementation.</p>
<p>Have your own example?  Please drop us a line at feedback@maplify.com so we can feature it also.</p>
]]></content:encoded>
			<wfw:commentRss>http://maplify.com/blog/2008/11/21/earthapi-moveend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
