<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><!-- generator="wordpress/2.3.3" --><rss 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/" version="2.0">

<channel>
	<title>Beginning Google Maps Applications</title>
	<link>http://googlemapsbook.com</link>
	<description>with PHP or Rails and AJAX: From Novice to Professional</description>
	<pubDate>Mon, 24 Mar 2008 18:09:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BeginningGoogleMapsApplications" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">565288</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Google SKY!</title>
		<link>http://googlemapsbook.com/2008/03/13/google-sky/</link>
		<comments>http://googlemapsbook.com/2008/03/13/google-sky/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 20:55:28 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
		
		<category><![CDATA[Overlays]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2008/03/13/google-sky/</guid>
		<description><![CDATA[I thought I&#8217;d share this with anyone who hasn&#8217;t received it yet&#8230; Another example of what you could do with the maps interface and an alternative tile set like Jeff&#8217;s blue-marble map.
Starting today, astronomy enthusiasts can now view imagery of millions
of celestial objects online - without downloading software.
Google Sky brings the imagery and functionality of [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d share this with anyone who hasn&#8217;t received it yet&#8230; Another example of what you could do with the maps interface and an alternative tile set like<a href="http://googlemapsbook.com/chapter9/EquidistantCylindricalProjection/"> Jeff&#8217;s blue-marble map</a>.</p>
<blockquote><p>Starting today, astronomy enthusiasts can now view imagery of millions<br />
of celestial objects online - without downloading software.</p>
<p>Google Sky brings the imagery and functionality of the popular Sky in<br />
Google Earth feature to a web browser, making it easier than ever for<br />
students, amateur astronomers and professionals alike to explore the<br />
universe.</p>
<p>By simply pointing their browsers to <a href="http://sky.google.com">http://sky.google.com</a>, users can<br />
browse, zoom and pan the sky, search for stars and galaxies, and link<br />
to any place in the sky. The same layers that are available in Sky in<br />
Google Earth, such as &#8220;Backyard Astronomy,&#8221; &#8220;Hubble Showcase&#8221; and<br />
podcasts from the radio program Earth &#038; Sky can be accessed by<br />
clicking on an image strip that appears along the bottom of the page.</p>
<p>For instance, the part of the sky visible when a user first loads<br />
sky.google.com shows the Cigar Galaxy (also known as Messier 82), one<br />
of the most striking galaxies in the universe. Switching on the<br />
infrared view of the sky using the &#8220;Spitzer Infrared Showcase&#8221; button<br />
at the bottom of the screen will overlay images from NASA&#8217;s Spitzer<br />
satellite and show how different the Cigar Galaxy appears in the<br />
infrared. When the overlay is activated a slider will appear, letting<br />
users move back and forth between infrared and optical light. To look<br />
in more detail, users should zoom into the galaxy or enter its name in<br />
the search box.
</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=D6hpUI"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=D6hpUI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2008/03/13/google-sky/feed/</wfw:commentRss>
		</item>
		<item>
		<title>to_json and Rails 2</title>
		<link>http://googlemapsbook.com/2008/02/13/to_json-and-rails-2/</link>
		<comments>http://googlemapsbook.com/2008/02/13/to_json-and-rails-2/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 19:23:56 +0000</pubDate>
		<dc:creator>Andre</dc:creator>
		
		<category><![CDATA[Fixes]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Ruby on Rails]]></category>

		<category><![CDATA[The Book]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2008/02/13/to_json-and-rails-2/</guid>
		<description><![CDATA[Rails 2 changed the way to_json works on ActiveRecord objects. Prior to Rails 2, to_json returned a hash of hashes &#8212; the first level hash had the key &#8216;attributes&#8217;, which in turn had another hash with your field name/values.
With Rails 2, calling to_json on an AR object just gives you a hash of field name/values. [...]]]></description>
			<content:encoded><![CDATA[<p>Rails 2 changed the way to_json works on ActiveRecord objects. Prior to Rails 2, to_json returned a hash of hashes &#8212; the first level hash had the key &#8216;attributes&#8217;, which in turn had another hash with your field name/values.</p>
<p>With Rails 2, calling to_json on an AR object just gives you a hash of field name/values. The new way is easier and more intuitive. However, in breaks our code in places where we use to_json to pass AR data into JavaScript. </p>
<p>The changes are straightforward. There were two ways we dealt with the intermediate &#8220;attributes&#8221; hash prior to Rails 2: </p>
<ol>
<li>we used map/collect before calling to_json, i.e.: cities.collect{|c|c.attributes}.to_json</li>
<li>we dealt with &#8216;attributes&#8217; in JavaScript, i.e., var marker=markers[i].attributes</li>
</ol>
<p>Fixing it just means removing references to the &#8216;attributes&#8217; and using the ActiveRecord instance directly.</p>
<p>Here are all the places changes need to be made:</p>
<ul>
<li>3.8: var marker=markers[i].attributes to <strong>var marker=markers[i]</strong></li>
<li>4.6: all instances of result.attributes to just <strong>result</strong></li>
<li>4.15: var stores=<%=(@stores.collect {|s|s.attributes}).to_json%>; to <strong>var stores=<%=@stores.to_json%>;</strong></li>
<li>5-12: remove the to_json method from class Tower</li>
<li>7-2: render :text=>cities.collect{|c|c.attributes}.to_json to <strong>render :text=>cities.to_json</strong></li>
<li>7-5: render :text=>cities.collect{|c|c.attributes}.to_json to <strong>render :text=>cities.to_json</strong></li>
<li>7.15: var points=<%=@towers.collect{|c|c.attributes}.to_json %>; to <strong>var points=<%=@towers.to_json %>;</strong></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=y20aEI"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=y20aEI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2008/02/13/to_json-and-rails-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>50 Things You Didn’t Know…?</title>
		<link>http://googlemapsbook.com/2008/02/13/50-things-you-didnt-know/</link>
		<comments>http://googlemapsbook.com/2008/02/13/50-things-you-didnt-know/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 12:04:41 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2008/02/13/50-things-you-didnt-know/</guid>
		<description><![CDATA[Amy writes &#8220;We just posted an article Top 50 Things You Didn&#8217;t Know You Could Do With Google Maps. I thought I&#8217;d bring it to your attention just in case you think your readers would find it interesting.&#8221;
Indeed. Some of this will be well known to our readers, however our newer mashup friends might find [...]]]></description>
			<content:encoded><![CDATA[<p>Amy writes &#8220;We just posted an article <a href="http://www.virtualhosting.com/blog/2008/top-50-things-you-didnt-know-you-could-do-with-google-maps/">Top 50 Things You Didn&#8217;t Know You Could Do With Google Maps</a>. I thought I&#8217;d bring it to your attention just in case you think your readers would find it interesting.&#8221;</p>
<p>Indeed. Some of this will be well known to our readers, however our newer mashup friends might find something here that is interesting. Enjoy.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=59JK6I"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=59JK6I" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2008/02/13/50-things-you-didnt-know/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP and asinh() on Windows</title>
		<link>http://googlemapsbook.com/2007/11/15/php-and-asinh-on-windows/</link>
		<comments>http://googlemapsbook.com/2007/11/15/php-and-asinh-on-windows/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 22:52:28 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
		
		<category><![CDATA[Fixes]]></category>

		<category><![CDATA[Geometry]]></category>

		<category><![CDATA[Overlays]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Projections]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/11/15/php-and-asinh-on-windows/</guid>
		<description><![CDATA[In the last few weeks we&#8217;ve seen an explosion of people complaining about the lack of asinh() on the Windows version of PHP. We use the asinh() function extensively in Chapter 7 for the custom tile overlays. Admittedly, we didn&#8217;t test any of the code against windows versions of PHP (we&#8217;re LAMP folks), so until [...]]]></description>
			<content:encoded><![CDATA[<p>In the last few weeks we&#8217;ve seen an explosion of people complaining about the lack of asinh() on the Windows version of PHP. We use the asinh() function extensively in <a href="http://googlemapsbook.com/chapter7/">Chapter 7</a> for the <a href="http://googlemapsbook.com/chapter7/ServerCustomTiles/">custom tile overlays</a>. Admittedly, we didn&#8217;t test any of the code against windows versions of PHP (we&#8217;re LAMP folks), so until the middle of September when Stuart contacted us to ask a question we had no idea about the problem.  <a href="http://googlemapsbook.com/2007/11/15/php-and-asinh-on-windows/#more-95" class="more-link">(more&#8230;)</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=FlTrII"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=FlTrII" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/11/15/php-and-asinh-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DragZoom taken into Google Maps Util Lib</title>
		<link>http://googlemapsbook.com/2007/06/21/dragzoom-taken-into-google-maps-util-lib/</link>
		<comments>http://googlemapsbook.com/2007/06/21/dragzoom-taken-into-google-maps-util-lib/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 17:17:45 +0000</pubDate>
		<dc:creator>Andre</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/06/21/dragzoom-taken-into-google-maps-util-lib/</guid>
		<description><![CDATA[DragZoom (previously called GZoom) is my drag-to-zoom custom Google Map control I open-sourced last year. I&#8217;m happy to say the code has been incorporated into Google&#8217;s own GMaps Utility Library. Thanks to Pamela Fox from Google for doing a lot of work to bring it in. You can now source DragZoom directly off of Google&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>DragZoom (previously called GZoom) is my drag-to-zoom custom Google Map control I open-sourced last year. I&#8217;m happy to say the code has been incorporated into Google&#8217;s own <a href="http://code.google.com/p/gmaps-utility-library/">GMaps Utility Library</a>. Thanks to Pamela Fox from Google for doing a lot of work to bring it in. You can now source DragZoom directly off of Google&#8217;s servers, so there&#8217;s no need to download your own copy.</p>
<p>Pamela also put together a <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/dragzoom/1.0/examples/dragzoomoptions.html">great example page</a> demonstrating the different instantiation options. Other links for the project:</p>
<ul>
<li><a href="http://gmaps-utility-library.googlecode.com/svn/trunk/dragzoom/1.0/src/dragzoom_packed.js">Packed source code (can source directly from this URL)</a></li>
<li><a href="http://gmaps-utility-library.googlecode.com/svn/trunk/dragzoom/1.0/src/dragzoom.js">Unpacked source code (use for reference)</a></li>
<li><a href="http://gmaps-utility-library-dev.googlecode.com/svn/trunk/dragzoom/">DragZoom project Root</a></li>
<li>Documentation: <a href="http://gmaps-utility-library-dev.googlecode.com/svn/trunk/dragzoom/docs/examples.html">examples</a> and <a href="http://gmaps-utility-library-dev.googlecode.com/svn/trunk/dragzoom/docs/reference.html">reference</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=1bx9Siqy"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=1bx9Siqy" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/06/21/dragzoom-taken-into-google-maps-util-lib/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No Forums, Sorry.</title>
		<link>http://googlemapsbook.com/2007/06/10/no-forums-sorry/</link>
		<comments>http://googlemapsbook.com/2007/06/10/no-forums-sorry/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 15:01:02 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
		
		<category><![CDATA[The Book]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/06/10/no-forums-sorry/</guid>
		<description><![CDATA[Hello All,
We&#8217;ve talked and talked about adding forums to this site and decided against it. We already do all of the support we can by email and encourage anyone who has trouble with anything in the books to contact us that way. If the problem is common enough we&#8217;ll blog about it instead. We also [...]]]></description>
			<content:encoded><![CDATA[<p>Hello All,</p>
<p>We&#8217;ve <a href="http://googlemapsbook.com/2006/12/17/forums/">talked and talked about adding forums</a> to this site and decided against it. We already do all of the support we can by email and encourage anyone who has trouble with anything in the books to <a href="/contact/">contact us</a> that way. If the problem is common enough we&#8217;ll blog about it instead. We also think that for all it&#8217;s UI short comings, <a href="http://groups.google.com/group/Google-Maps-API">the official API group</a> is still the number 1 source for great support in this community. We just don&#8217;t want to fracture that.</p>
<p>However, if one of you is enterprising enough to start up a successful forum we&#8217;ll endorse it here to all of our readers and RSS subscribers. How&#8217;s that for a compromise?</p>
<p>Take care and good luck with all your maps!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=DqLCPkCL"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=DqLCPkCL" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/06/10/no-forums-sorry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails Book Contest Winners</title>
		<link>http://googlemapsbook.com/2007/03/15/rails-book-contest-winners/</link>
		<comments>http://googlemapsbook.com/2007/03/15/rails-book-contest-winners/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 19:38:46 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
		
		<category><![CDATA[The Book]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/03/15/rails-book-contest-winners/</guid>
		<description><![CDATA[Our three week entry period is over and we have selected the winners of a free copy of Beginning Google Maps Applications with Rails and Ajax: From Novice to Professional.
From the over 450+ entries received we have randomly selected four lucky winners. They are:

Ryan Irelan of Raleigh, NC, USA
Daniel Leong of London, UK
Mike Hodgson (location [...]]]></description>
			<content:encoded><![CDATA[<p>Our three week entry period is over and we have selected the winners of a free copy of <a href="http://www.amazon.com/exec/obidos/ASIN/1590597877/googlemapsbook-20">Beginning Google Maps Applications with Rails and Ajax: From Novice to Professional</a>.</p>
<p>From the over 450+ entries received we have randomly selected four lucky winners. They are:</p>
<ol>
<li>Ryan Irelan of Raleigh, NC, USA</li>
<li>Daniel Leong of London, UK</li>
<li>Mike Hodgson (location withheld)</li>
<li>Aran Donohue (location withheld)</li>
</ol>
<p>We have contacted each of the winners via email to arrange delivery of their prize. Congratulations!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=L51XH5fa"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=L51XH5fa" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/03/15/rails-book-contest-winners/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clickable LabeledMarker</title>
		<link>http://googlemapsbook.com/2007/03/06/clickable-labeledmarker/</link>
		<comments>http://googlemapsbook.com/2007/03/06/clickable-labeledmarker/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 05:09:30 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Overlays]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/03/06/clickable-labeledmarker/</guid>
		<description><![CDATA[Back in January, I demonstrated how to extend GMarker for text-based labels. In the interests of keeping things simple, I ignored any event handling, and just covered the nuts and bolts of how to make a wrapper class in JavaScript, and how to add the basic functionality we wanted.
Well, we had a number of requests [...]]]></description>
			<content:encoded><![CDATA[<p>Back in January, I demonstrated how to <a href="http://googlemapsbook.com/2007/01/22/extending-gmarker/">extend GMarker for text-based labels</a>. In the interests of keeping things simple, I ignored any event handling, and just covered the nuts and bolts of how to make a wrapper class in JavaScript, and how to add the basic functionality we wanted.</p>
<p>Well, we had a number of requests by email for an explanation of how to set this up with clickable markers, so here it is. First, I&#8217;ve made a <a href="http://uwmike.com/maps/manhattan2/">new version of the demo</a>, which now features the traditional infoWindow popups, triggered by either marker clicks or selection from the sidebar.</p>
<p><img src='http://googlemapsbook.com/wordpress/wp-content/uploads/2007/03/labeledmarker-click.png' alt='LabeledMarker Click' /></p>
<p>If you just want the source for the new version, it&#8217;s <a href="http://uwmike.com/maps/manhattan2/labeled_marker.js">right here</a>. There&#8217;s a brief discussion of the changes, below the jump.  <a href="http://googlemapsbook.com/2007/03/06/clickable-labeledmarker/#more-90" class="more-link">(more&#8230;)</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=hotM6oBU"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=hotM6oBU" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/03/06/clickable-labeledmarker/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ruby on Rails code download</title>
		<link>http://googlemapsbook.com/2007/03/05/ruby-on-rails-code-download/</link>
		<comments>http://googlemapsbook.com/2007/03/05/ruby-on-rails-code-download/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 19:31:05 +0000</pubDate>
		<dc:creator>Andre</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/03/05/ruby-on-rails-code-download/</guid>
		<description><![CDATA[The Ruby on Rails code is ready to downloaded. Here&#8217;s how to get it up and running in your environment:

Download the zip file, gmaps_rails_code.zip
Create your own empty Rails application (rails your_app_name)
Unzip gmaps_rails_code.zip in the root of your newly created application. When you unzip the file, you will see it contains five root directories: app, db, [...]]]></description>
			<content:encoded><![CDATA[<p>The Ruby on Rails code is ready to downloaded. Here&#8217;s how to get it up and running in your environment:</p>
<ol>
<li>Download the zip file, <a href="http://googlemapsbook.com/gmaps_rails_code.zip">gmaps_rails_code.zip</a></li>
<li>Create your own empty Rails application (rails your_app_name)</li>
<li>Unzip gmaps_rails_code.zip in the root of your newly created application. When you unzip the file, you will see it contains five root directories: app, db, lib, public, standalone_scripts. You want these directories to overlay the directories of your own Rails application.</li>
<li>
set up your config/database.yml as appropriate for your environment. Most people just use root/no password for their development environment.</li>
<li>in routes.rb, add a line to configure the home_url: <code>map.home '', :controller => 'app', :action=>'index'</code></li>
<li>run <code>rake db:migrate</code> to load the schema.</li>
<li>In your config/environments/development.rb, add a line to specify your own Google Maps API key:<br />
GOOGLE_MAPS_KEY=&#8217;your-google-maps-api-key&#8217;</li>
<li>Start your rails server, and go to http://localhost:3000/app (or adjust if your server is on a different port). You should see a welcome page and links to all the chapter examples.</li>
</ol>
<p>These steps will give you the code and an empty database. This is meant to set the stage for you work with the various examples in the book. You will need to run the various data imports (capitol city scaping, FCC structure import, TIGER/Line data processing, etc) per the instructions in the book to fully populate the database. </p>
<p>After following the steps here, the examples in chapters 2,3,9, and 10 should work immediately. The rest of the chapters require some amount of data (primarily the FCC towers data), so you will need to load that data for the examples to work.</p>
<p><strong>Notes</strong></p>
<p>The Google Maps key is the primary configuration setting you need to get started. There are some others you will need for later chapters, however. You can add these to config/environments/development.rb file as well:</p>
<p><code>TIGERLINE_DIR="/path/to/your/tigerline/data"<br />
YAHOO_API_KEY="your_yahoo_api_key"<br />
UK_POSTCODE_DIR="/path/to/your/uk/postcode/data" #the directory, not the file</code></p>
<p>Finally, note that the Ruby on Rails examples are live at <a href="http://book.earthcode.com">http://book.earthcode.com</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=C6rktG9v"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=C6rktG9v" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/03/05/ruby-on-rails-code-download/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails source code coming soon</title>
		<link>http://googlemapsbook.com/2007/03/04/rails-source-code-coming-soon/</link>
		<comments>http://googlemapsbook.com/2007/03/04/rails-source-code-coming-soon/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 20:04:30 +0000</pubDate>
		<dc:creator>Andre</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://googlemapsbook.com/2007/03/04/rails-source-code-coming-soon/</guid>
		<description><![CDATA[To those of you who have emailed us about the source code for the Rails edition &#8212; thanks for your patience, it&#8217;s coming soon! I decided to present it as a one compressed file you can unpack over an existing Rails application skeleton. Stay tuned, the code is coming later today or tomorrow at the [...]]]></description>
			<content:encoded><![CDATA[<p>To those of you who have emailed us about the source code for the Rails edition &#8212; thanks for your patience, it&#8217;s coming soon! I decided to present it as a one compressed file you can unpack over an existing Rails application skeleton. Stay tuned, the code is coming later today or tomorrow at the latest.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?a=ys46RCX0"><img src="http://feeds.feedburner.com/~f/BeginningGoogleMapsApplications?i=ys46RCX0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://googlemapsbook.com/2007/03/04/rails-source-code-coming-soon/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
