<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Slippy Map</title>
	<atom:link href="http://www.canvasdemos.com/2010/02/14/slippy-map/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.canvasdemos.com/2010/02/14/slippy-map/</link>
	<description>Applications, games, tools and tutorials for the HTML5 canvas element</description>
	<lastBuildDate>Wed, 08 Feb 2012 20:09:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Thomas</title>
		<link>http://www.canvasdemos.com/2010/02/14/slippy-map/comment-page-1/#comment-4762</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 29 Nov 2010 22:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.canvasdemos.com/?p=970#comment-4762</guid>
		<description>I ment wrap-around &quot;pan&quot;</description>
		<content:encoded><![CDATA[<p>I ment wrap-around &#8220;pan&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.canvasdemos.com/2010/02/14/slippy-map/comment-page-1/#comment-4761</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 29 Nov 2010 22:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.canvasdemos.com/?p=970#comment-4761</guid>
		<description>Nice!


I ended up doing something similar drawing Google Map tiles - bypassing the Google Maps API:

&lt;a href=&quot;http://www.mapfolds.com/2010/11/25/google-maps-on-html5-canvas-grains-on-a-chessboard/&quot; rel=&quot;nofollow&quot;&gt;http://www.mapfolds.com/2010/11/25/google-maps-on-html5-canvas-grains-on-a-chessboard/&lt;/a&gt;

Doesn&#039;t do the nice wrap-around zoom like yours, but have included some zooming.</description>
		<content:encoded><![CDATA[<p>Nice!</p>
<p>I ended up doing something similar drawing Google Map tiles &#8211; bypassing the Google Maps API:</p>
<p><a href="http://www.mapfolds.com/2010/11/25/google-maps-on-html5-canvas-grains-on-a-chessboard/" rel="nofollow">http://www.mapfolds.com/2010/11/25/google-maps-on-html5-canvas-grains-on-a-chessboard/</a></p>
<p>Doesn&#8217;t do the nice wrap-around zoom like yours, but have included some zooming.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://www.canvasdemos.com/2010/02/14/slippy-map/comment-page-1/#comment-2613</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Tue, 09 Mar 2010 18:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.canvasdemos.com/?p=970#comment-2613</guid>
		<description>What a great script. I got it to work in internet explorer -- Well, at least the the internet explorer I have on this computer. I think it&#039;s IE 7. 


I had to do the usual

 event = !event ? window.event : event  

for the dragging events and for some reason, I had to make the window.onmousewheel= mouseWheel into this

window.onmousewheel = document.onmousewheel= mouseWheel

and that finally worked.

here&#039;s a link to the script with small changes I made
http://www.pdxbusiness.com/canvas/slippymap/</description>
		<content:encoded><![CDATA[<p>What a great script. I got it to work in internet explorer &#8212; Well, at least the the internet explorer I have on this computer. I think it&#8217;s IE 7. </p>
<p>I had to do the usual</p>
<p> event = !event ? window.event : event  </p>
<p>for the dragging events and for some reason, I had to make the window.onmousewheel= mouseWheel into this</p>
<p>window.onmousewheel = document.onmousewheel= mouseWheel</p>
<p>and that finally worked.</p>
<p>here&#8217;s a link to the script with small changes I made<br />
<a href="http://www.pdxbusiness.com/canvas/slippymap/" rel="nofollow">http://www.pdxbusiness.com/canvas/slippymap/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moophy</title>
		<link>http://www.canvasdemos.com/2010/02/14/slippy-map/comment-page-1/#comment-2610</link>
		<dc:creator>Moophy</dc:creator>
		<pubDate>Tue, 09 Mar 2010 15:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.canvasdemos.com/?p=970#comment-2610</guid>
		<description>It works fine on Safari 4.04 PC version.</description>
		<content:encoded><![CDATA[<p>It works fine on Safari 4.04 PC version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aa</title>
		<link>http://www.canvasdemos.com/2010/02/14/slippy-map/comment-page-1/#comment-2505</link>
		<dc:creator>aa</dc:creator>
		<pubDate>Mon, 01 Mar 2010 21:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.canvasdemos.com/?p=970#comment-2505</guid>
		<description>Tips to the author:

Can be highly optimized.
Biggest performance isssue is redrawing all tiles when loading images.

Other performance issue is drawing a htmlImage which is at least two times slower than data from getImageData or a CanvasHTMLElement.
See processingjs.org for an implementation of loadImage.</description>
		<content:encoded><![CDATA[<p>Tips to the author:</p>
<p>Can be highly optimized.<br />
Biggest performance isssue is redrawing all tiles when loading images.</p>
<p>Other performance issue is drawing a htmlImage which is at least two times slower than data from getImageData or a CanvasHTMLElement.<br />
See processingjs.org for an implementation of loadImage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frantoio Oil</title>
		<link>http://www.canvasdemos.com/2010/02/14/slippy-map/comment-page-1/#comment-2309</link>
		<dc:creator>Frantoio Oil</dc:creator>
		<pubDate>Mon, 15 Feb 2010 11:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.canvasdemos.com/?p=970#comment-2309</guid>
		<description>Works on Safari.</description>
		<content:encoded><![CDATA[<p>Works on Safari.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

