<?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>BlinkTag Inc &#187; biking</title>
	<atom:link href="http://blinktag.com/tag/biking/feed/" rel="self" type="application/rss+xml" />
	<link>http://blinktag.com</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 04:50:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Add Google Bike or Google Transit layer to your Google Maps API</title>
		<link>http://blinktag.com/add-google-bike-or-google-transit-layer-to-your-google-maps-api/</link>
		<comments>http://blinktag.com/add-google-bike-or-google-transit-layer-to-your-google-maps-api/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 08:45:04 +0000</pubDate>
		<dc:creator>Brendan Nee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[bike maps]]></category>
		<category><![CDATA[biking]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[google transit]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[transit]]></category>

		<guid isPermaLink="false">http://blinktag.com/?p=746</guid>
		<description><![CDATA[Using Google Maps API you can choose between a few different background layers: Standard, Satellite, Hybrid and Physical. This is done using the setMapType() method. However, there currently isn&#8217;t a way to get display the transit or bike map layer. However, Google Maps allows you to create your own tile layer and load in into [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blinktag.com/wp-content/uploads/2010/04/Page-St-to-Harrison-St-Google-Maps.jpg" rel="lightbox[746]"><img class="alignright size-medium wp-image-749" title="Page St to Harrison St - Google Maps" src="http://blinktag.com/wp-content/uploads/2010/04/Page-St-to-Harrison-St-Google-Maps-300x153.jpg" alt="" width="300" height="153"></a>Using Google Maps API you can choose between a few different background layers: Standard, Satellite, Hybrid and Physical.  This is done using the <a href="http://code.google.com/apis/maps/documentation/introduction.html#MapTypes"><code>setMapType()</code> method</a>.</p>
<p>However, there currently isn&#8217;t a way to get display the transit or bike map layer.  However, Google Maps allows you to create your own tile layer and load in into the map.  It&#8217;s not too difficult to create your own custom tile layer and actually refer to the actual bike map or transit map tiles and load them directly from Google.</p>
<p>The URL template you need for getting bike maps is:</p>
<blockquote><p><code>http://mt1.google.com/vt/lyrs=m@121,bike&amp;hl=en&amp;x={X}&amp;y={Y}&amp;z={Z}</code></p></blockquote>
<p>and for transit maps:</p>
<blockquote><p><code>http://mt1.google.com/vt/lyrs=m@121,transit|vm:1&amp;hl=en&amp;opts=r&amp;x={X}&amp;y={Y}&amp;z={Z}</code></p></blockquote>
<p>To create your own tile layer, use one of the URL templates above:</p>
<blockquote><p><code></p>
<pre>function initialize() {
  var map = new GMap2(document.getElementById("map_canvas"));
  map.setCenter(new GLatLng(37.880002, -122.189941), 11);

  //Create new Tile Layer
  var gTileUrlTemplate = 'http://mt1.google.com/vt/lyrs=m@121,bike&#038;hl=en&#038;x={X}&#038;y={Y}&#038;z={Z}';
  var tileLayerOverlay = new GTileLayerOverlay(
    new GTileLayer(null, null, null, {
      tileUrlTemplate: gTileUrlTemplate,
      isPng:true,
      opacity:0.8
    })
  );
  map.addOverlay(tileLayerOverlay);
  }</pre>
<p></code></p></blockquote>
<p>These URLs could change at any time, so there is no guarantee that this won&#8217;t break.  You can see this in action at <a href="http://whereisbart.com">whereisbart.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blinktag.com/add-google-bike-or-google-transit-layer-to-your-google-maps-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>coming soon… biking in San Francisco?</title>
		<link>http://blinktag.com/coming-soon%e2%80%a6-biking-in-san-francisco/</link>
		<comments>http://blinktag.com/coming-soon%e2%80%a6-biking-in-san-francisco/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 11:01:50 +0000</pubDate>
		<dc:creator>Brendan Nee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[biking]]></category>
		<category><![CDATA[EIR]]></category>
		<category><![CDATA[market street]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[transportation]]></category>

		<guid isPermaLink="false">http://blnktag.com/?p=218</guid>
		<description><![CDATA[We here at Blinktag use our bikes as the preferred mode of transport (we’ve even got a company tandem thanks to Preston). Aside from the hills, San Francisco is very conducive to cycling given its reasonable climate, dense layout and culture that embraces all things alternative, including modes. However, for over 2.5 years the city’s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blinktag.com/images/9bb94c65bc509a571fde73f73255b0a2.png" style="float:left;">We here at Blinktag use our bikes as the preferred mode of transport (we’ve even got a <a href="http://flickr.com/photos/theler/3197214957/" target="_blank">company tandem</a> thanks to Preston). Aside from the hills, San Francisco is very conducive to cycling given its reasonable climate, dense layout and culture that embraces all things alternative, including modes. However, for over 2.5 years the city’s investment in bike infrastructure has been on pause thanks to a <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2006/06/24/BAG7QJJSR71.DTL" target="_blank">nasty legal battle</a>.</p>
<p>Armed with a <a href="http://sfgov.org/site/planning_index.asp?id=80504" target="_blank">1353 page environmental impact report</a> that claims <strong>biking is good for environment</strong>, the city is now gearing up to proceed with much needed improvements. The public comment period ended on Jan 13, 2009 which might mean at some point this year we’ll see the beginnings of 34 miles of bike lanes, improved intersections, signage and <a href="http://www.sfbike.org/?eir_projects" target="_blank">much more</a>.</p>
<p>Meanwhile, there has been talk of <a href="http://www.sfexaminer.com/local/Market_Street_plan_picks_up_speed.html" target="_blank">eliminating car traffic on Market Street</a>, <a href="http://sfist.com/2009/01/07/sfmta_to_eliminate_marketoctavia_bi.php" target="_blank">eliminating bike lanes on part of Market Street</a> (what?), and <a href="http://sf.curbed.com/archives/2008/12/04/congestion_pricing_it_wont_help_traffic_but_who_really_cares.php" target="_blank">charging all vehicle traffic in the central part of the city</a>.  Its going to be interesting to follow all of this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blinktag.com/coming-soon%e2%80%a6-biking-in-san-francisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
