<?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: AS3 Maps: Flick-able and Spinnable</title>
	<atom:link href="http://www.yswfblog.com/blog/index.php/2008/02/11/as3-maps-flick-able-and-spinnable/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/</link>
	<description>News and Articles on Yahoo! Flash Components and Libraries</description>
	<lastBuildDate>Sat, 20 Feb 2010 17:19:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: asinomasimple</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-11884</link>
		<dc:creator>asinomasimple</dc:creator>
		<pubDate>Wed, 21 May 2008 12:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-11884</guid>
		<description>Any updates on that crossdomain file for the BitmapData?</description>
		<content:encoded><![CDATA[<p>Any updates on that crossdomain file for the BitmapData?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Richter</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-6600</link>
		<dc:creator>Stefan Richter</dc:creator>
		<pubDate>Mon, 03 Mar 2008 09:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-6600</guid>
		<description>I&#039;m using the Yahoo maps in a Flex project and it&#039;s working very well. I do however see security sandbox errors when trying to grab a bitmapdata snapshot. Is this something that Yahoo could address? I think all it may take is the appropriate crossdomain file.

Regards,

Stefan</description>
		<content:encoded><![CDATA[<p>I&#8217;m using the Yahoo maps in a Flex project and it&#8217;s working very well. I do however see security sandbox errors when trying to grab a bitmapdata snapshot. Is this something that Yahoo could address? I think all it may take is the appropriate crossdomain file.</p>
<p>Regards,</p>
<p>Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: c.moore</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5528</link>
		<dc:creator>c.moore</dc:creator>
		<pubDate>Tue, 19 Feb 2008 04:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5528</guid>
		<description>any source for this available?


looks awsome</description>
		<content:encoded><![CDATA[<p>any source for this available?</p>
<p>looks awsome</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Wilday</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5186</link>
		<dc:creator>Dan Wilday</dc:creator>
		<pubDate>Thu, 14 Feb 2008 19:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5186</guid>
		<description>The code snippet in my last post got truncated due to LessThan and GreaterThan symbols.  Hopefully this one will go through better.

if(zoomLevel &lt; _zoomRange.minimum) _map.zoomLevel = _zoomRange.minimum;
if(zoomLevel &gt; _zoomRange.maximum) _map.zoomLevel = _zoomRange.maximum;</description>
		<content:encoded><![CDATA[<p>The code snippet in my last post got truncated due to LessThan and GreaterThan symbols.  Hopefully this one will go through better.</p>
<p>if(zoomLevel &lt; _zoomRange.minimum) _map.zoomLevel = _zoomRange.minimum;<br />
if(zoomLevel &gt; _zoomRange.maximum) _map.zoomLevel = _zoomRange.maximum;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Wilday</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5183</link>
		<dc:creator>Dan Wilday</dc:creator>
		<pubDate>Thu, 14 Feb 2008 19:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5183</guid>
		<description>I was able to hack out an answer to my own zooming problem... but I&#039;ve yet to crack the panning dilemma.

For anyone interested here&#039;s what I did:

1 - created my own _zoomRange Object with minimum a maximum properties

2 - added YahooMapEvent.MAP_ZOOM EventListener to the the map.

3 - on zoom I checked that the range was inside my own range like so:

var zoomLevel:int = e.currentTarget.zoomLevel;
if(zoomLevel  _zoomRange.maximum) _map.zoomLevel = _zoomRange.maximum;

I&#039;m still working on the panning problem.
If there&#039;s any official answer on this (or an elegant hack) I&#039;d love to hear it.

Dan Wilday
Peel Interactive Media</description>
		<content:encoded><![CDATA[<p>I was able to hack out an answer to my own zooming problem&#8230; but I&#8217;ve yet to crack the panning dilemma.</p>
<p>For anyone interested here&#8217;s what I did:</p>
<p>1 &#8211; created my own _zoomRange Object with minimum a maximum properties</p>
<p>2 &#8211; added YahooMapEvent.MAP_ZOOM EventListener to the the map.</p>
<p>3 &#8211; on zoom I checked that the range was inside my own range like so:</p>
<p>var zoomLevel:int = e.currentTarget.zoomLevel;<br />
if(zoomLevel  _zoomRange.maximum) _map.zoomLevel = _zoomRange.maximum;</p>
<p>I&#8217;m still working on the panning problem.<br />
If there&#8217;s any official answer on this (or an elegant hack) I&#8217;d love to hear it.</p>
<p>Dan Wilday<br />
Peel Interactive Media</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Wilday</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5184</link>
		<dc:creator>Dan Wilday</dc:creator>
		<pubDate>Thu, 14 Feb 2008 19:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5184</guid>
		<description>I was able to hack out an answer to my own zooming problem... but I&#039;ve yet to crack the panning dilemma.

For anyone interested here&#039;s what I did:

1 - created my own _zoomRange Object with minimum a maximum properties

2 - added YahooMapEvent.MAP_ZOOM EventListener to the the map.

3 - on zoom I checked that the range was inside my own range like so:

var zoomLevel:int = e.currentTarget.zoomLevel;
if(zoomLevel  _zoomRange.maximum) _map.zoomLevel = _zoomRange.maximum;

I&#039;m still working on the panning problem.
If there&#039;s any official answer on this (or an elegant hack) I&#039;d love to hear it.

Dan Wilday
Peel Interactive Media</description>
		<content:encoded><![CDATA[<p>I was able to hack out an answer to my own zooming problem&#8230; but I&#8217;ve yet to crack the panning dilemma.</p>
<p>For anyone interested here&#8217;s what I did:</p>
<p>1 &#8211; created my own _zoomRange Object with minimum a maximum properties</p>
<p>2 &#8211; added YahooMapEvent.MAP_ZOOM EventListener to the the map.</p>
<p>3 &#8211; on zoom I checked that the range was inside my own range like so:</p>
<p>var zoomLevel:int = e.currentTarget.zoomLevel;<br />
if(zoomLevel  _zoomRange.maximum) _map.zoomLevel = _zoomRange.maximum;</p>
<p>I&#8217;m still working on the panning problem.<br />
If there&#8217;s any official answer on this (or an elegant hack) I&#8217;d love to hear it.</p>
<p>Dan Wilday<br />
Peel Interactive Media</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Wilday</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5176</link>
		<dc:creator>Dan Wilday</dc:creator>
		<pubDate>Thu, 14 Feb 2008 18:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5176</guid>
		<description>I&#039;m having trouble finding a help page or help forum for this API so I&#039;ll just post it here in hopes that I&#039;ll either get the answer I need or get redirected to somewhere more useful. :)

I&#039;m trying to use the YahooMap.setMapBounds as well as YahooMap.setZoomRange to limit the users movements on the map to the portion relevant to the site.  Thus far I cannot get either of these to work.  Are these methods still in development or is there something I could be doing incorrectly?

Dan Wilday
Peel Interactive Media</description>
		<content:encoded><![CDATA[<p>I&#8217;m having trouble finding a help page or help forum for this API so I&#8217;ll just post it here in hopes that I&#8217;ll either get the answer I need or get redirected to somewhere more useful. <img src='http://www.yswfblog.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m trying to use the YahooMap.setMapBounds as well as YahooMap.setZoomRange to limit the users movements on the map to the portion relevant to the site.  Thus far I cannot get either of these to work.  Are these methods still in development or is there something I could be doing incorrectly?</p>
<p>Dan Wilday<br />
Peel Interactive Media</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: intense creativity &#187; Blog Archive &#187; Yahoo Maps API in pure AS3!</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5155</link>
		<dc:creator>intense creativity &#187; Blog Archive &#187; Yahoo Maps API in pure AS3!</dc:creator>
		<pubDate>Thu, 14 Feb 2008 07:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5155</guid>
		<description>[...] Following this link you will find a blog entry on a little app the guys inside of Yahoo built. Somebody should tell them about the &#8217;smoothing&#8217; property of Bitmap object in AS3, it would make the rotated maps look much better! [...]</description>
		<content:encoded><![CDATA[<p>[...] Following this link you will find a blog entry on a little app the guys inside of Yahoo built. Somebody should tell them about the &#8217;smoothing&#8217; property of Bitmap object in AS3, it would make the rotated maps look much better! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yahoo! Cool thing of the Day &#187; Blog Archive &#187; Can&#8217;t spell EXAMPLES without MAPS</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5099</link>
		<dc:creator>Yahoo! Cool thing of the Day &#187; Blog Archive &#187; Can&#8217;t spell EXAMPLES without MAPS</dc:creator>
		<pubDate>Wed, 13 Feb 2008 04:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5099</guid>
		<description>[...] people, hopefully. You can get a bird&#039;s eye view of the news, for instance, or toss your map around at the flick of a mouse (shout-out to my friend Jon!). And of course, in case you are looking to get into your own hacking, [...]</description>
		<content:encoded><![CDATA[<p>[...] people, hopefully. You can get a bird&#8217;s eye view of the news, for instance, or toss your map around at the flick of a mouse (shout-out to my friend Jon!). And of course, in case you are looking to get into your own hacking, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Tynjala</title>
		<link>http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/comment-page-1/#comment-5082</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Wed, 13 Feb 2008 00:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.yswfblog.com/blog/2008/02/11/as3-maps-flick-able-and-spinnable/#comment-5082</guid>
		<description>Matt, check out my blog post, &lt;a href=&quot;http://www.zeuslabs.us/2008/02/12/yahoo-actionscript-3-maps-api-in-flash-cs3/&quot; rel=&quot;nofollow&quot;&gt;How to use the Yahoo! AS3 Maps API in Flash CS3&lt;/a&gt; for some pretty easy steps to get Maps working in Flash.

Josh Tynjala
Yahoo! Flash Platform</description>
		<content:encoded><![CDATA[<p>Matt, check out my blog post, <a href="http://www.zeuslabs.us/2008/02/12/yahoo-actionscript-3-maps-api-in-flash-cs3/" rel="nofollow">How to use the Yahoo! AS3 Maps API in Flash CS3</a> for some pretty easy steps to get Maps working in Flash.</p>
<p>Josh Tynjala<br />
Yahoo! Flash Platform</p>
]]></content:encoded>
	</item>
</channel>
</rss>
