<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for MapQuest Actionscript 3.0 Learning and Blogging</title>
	<atom:link href="http://mqguru.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mqguru.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 19 Jan 2009 14:18:43 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Adding and Removing the same POIs by mqguru</title>
		<link>http://mqguru.wordpress.com/2009/01/12/adding-and-removing-the-same-pois/#comment-137</link>
		<dc:creator>mqguru</dc:creator>
		<pubDate>Mon, 19 Jan 2009 14:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=39#comment-137</guid>
		<description>For a quick removal of all pois, do not use the removeAllPois() function, use the following:

var sc:ShapeCollection = myMap.getShapeCollections()[0];
sc.removeAll();

the removeAllPois function will just remove them at the view level, they will come back when you zoom in and out.</description>
		<content:encoded><![CDATA[<p>For a quick removal of all pois, do not use the removeAllPois() function, use the following:</p>
<p>var sc:ShapeCollection = myMap.getShapeCollections()[0];<br />
sc.removeAll();</p>
<p>the removeAllPois function will just remove them at the view level, they will come back when you zoom in and out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding and Removing the same POIs by mqguru</title>
		<link>http://mqguru.wordpress.com/2009/01/12/adding-and-removing-the-same-pois/#comment-136</link>
		<dc:creator>mqguru</dc:creator>
		<pubDate>Mon, 12 Jan 2009 21:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=39#comment-136</guid>
		<description>Another suggestion that was made by the MapQuest team is the following

You can remove individual pois from the collection and they will be removed from the map.  Once the poi is added as part of a collection, the poi can not be removed indivually.  For example...
 
private var bc:int = 0;
private function breakIt():void{
var sc:ShapeCollection = myMap.getShapeCollections()[0];
sc.remove(sc.get(bc++)); // remove from collection</description>
		<content:encoded><![CDATA[<p>Another suggestion that was made by the MapQuest team is the following</p>
<p>You can remove individual pois from the collection and they will be removed from the map.  Once the poi is added as part of a collection, the poi can not be removed indivually.  For example&#8230;</p>
<p>private var bc:int = 0;<br />
private function breakIt():void{<br />
var sc:ShapeCollection = myMap.getShapeCollections()[0];<br />
sc.remove(sc.get(bc++)); // remove from collection</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding and Removing the same POIs by mqguru</title>
		<link>http://mqguru.wordpress.com/2009/01/12/adding-and-removing-the-same-pois/#comment-135</link>
		<dc:creator>mqguru</dc:creator>
		<pubDate>Mon, 12 Jan 2009 17:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=39#comment-135</guid>
		<description>I sent this into MapQuest before I posted it, and I was told to follow some steps that are used in another app.  Here is another work around:

var shpC:ShapeCollection = new ShapeCollection();
shpC.add(myMap.getByKey(myPoi.id))
myMap.removeShapeCollection(shpC);

That is said to work, I have not personally tested it yet, but it does seem to work in their code.  I would personally like to see the shape remove when I call the removeShape() function.  If i want to hide it, I should be able to set the visibility of the item.</description>
		<content:encoded><![CDATA[<p>I sent this into MapQuest before I posted it, and I was told to follow some steps that are used in another app.  Here is another work around:</p>
<p>var shpC:ShapeCollection = new ShapeCollection();<br />
shpC.add(myMap.getByKey(myPoi.id))<br />
myMap.removeShapeCollection(shpC);</p>
<p>That is said to work, I have not personally tested it yet, but it does seem to work in their code.  I would personally like to see the shape remove when I call the removeShape() function.  If i want to hide it, I should be able to set the visibility of the item.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back to Mapping, YAY! by MQ_Darin</title>
		<link>http://mqguru.wordpress.com/2008/08/21/back-to-mapping-yay/#comment-132</link>
		<dc:creator>MQ_Darin</dc:creator>
		<pubDate>Fri, 24 Oct 2008 00:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=21#comment-132</guid>
		<description>New beta version of the API released today.

http://developer.mapquest.com/Beta

Get it here...

http://developer.mapquest.com/betaAPI/actionscript/MQASFXAPI_5.3.2_RC1.zip

See it in action here...

http://developer.mapquest.com/betaAPI/FX_samples/NALayer/UnitTesterNorthAmericanLayer.html</description>
		<content:encoded><![CDATA[<p>New beta version of the API released today.</p>
<p><a href="http://developer.mapquest.com/Beta" rel="nofollow">http://developer.mapquest.com/Beta</a></p>
<p>Get it here&#8230;</p>
<p><a href="http://developer.mapquest.com/betaAPI/actionscript/MQASFXAPI_5.3.2_RC1.zip" rel="nofollow">http://developer.mapquest.com/betaAPI/actionscript/MQASFXAPI_5.3.2_RC1.zip</a></p>
<p>See it in action here&#8230;</p>
<p><a href="http://developer.mapquest.com/betaAPI/FX_samples/NALayer/UnitTesterNorthAmericanLayer.html" rel="nofollow">http://developer.mapquest.com/betaAPI/FX_samples/NALayer/UnitTesterNorthAmericanLayer.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back to Mapping, YAY! by Josh Babetski</title>
		<link>http://mqguru.wordpress.com/2008/08/21/back-to-mapping-yay/#comment-126</link>
		<dc:creator>Josh Babetski</dc:creator>
		<pubDate>Fri, 22 Aug 2008 15:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=21#comment-126</guid>
		<description>FYI: We have a version of the AS3 API out (5.3.1_U) that was built for use with Flex 3. Check out the latest entry on the MapQuest Developer Blog: http://devblog.mapquest.com/2008/08/22/got-flash-10/

Glad you&#039;re enjoying the improvements and features in 5.3. We enjoy reading your adventures in app building. Ping us if you need anything.</description>
		<content:encoded><![CDATA[<p>FYI: We have a version of the AS3 API out (5.3.1_U) that was built for use with Flex 3. Check out the latest entry on the MapQuest Developer Blog: <a href="http://devblog.mapquest.com/2008/08/22/got-flash-10/" rel="nofollow">http://devblog.mapquest.com/2008/08/22/got-flash-10/</a></p>
<p>Glad you&#8217;re enjoying the improvements and features in 5.3. We enjoy reading your adventures in app building. Ping us if you need anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by tom danaher</title>
		<link>http://mqguru.wordpress.com/about/#comment-125</link>
		<dc:creator>tom danaher</dc:creator>
		<pubDate>Thu, 19 Jun 2008 05:49:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-125</guid>
		<description>Hi,

I really learned a lot from you posts.  We are trying to display a ton of custom point, line &amp; polygon data on top of a custom Flex Map builtin useing the AS3 API from Mapquest.  We are also looking at the XML route for display of geometry and underlying attribute data.  I would love to compare notes, willing to pay you for your time (as long as you are OK with it).

Let me know

thanks

Tom Danaher

714 371 1827</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I really learned a lot from you posts.  We are trying to display a ton of custom point, line &amp; polygon data on top of a custom Flex Map builtin useing the AS3 API from Mapquest.  We are also looking at the XML route for display of geometry and underlying attribute data.  I would love to compare notes, willing to pay you for your time (as long as you are OK with it).</p>
<p>Let me know</p>
<p>thanks</p>
<p>Tom Danaher</p>
<p>714 371 1827</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Less expensive Polygons by mqguru</title>
		<link>http://mqguru.wordpress.com/2008/03/26/less-expensive-polygons/#comment-114</link>
		<dc:creator>mqguru</dc:creator>
		<pubDate>Tue, 01 Apr 2008 16:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=17#comment-114</guid>
		<description>Wow I love this.  Thanks for the thoughts ANT.  I will be checking them out soon.  I will make sure to check out the generalize function or whatever it might be called in 5.3  Also need to dig into the tile map stuff more.  I will be looking into that and get back with you on how that works for us.  Thanks for the great tips and glad to have to read.</description>
		<content:encoded><![CDATA[<p>Wow I love this.  Thanks for the thoughts ANT.  I will be checking them out soon.  I will make sure to check out the generalize function or whatever it might be called in 5.3  Also need to dig into the tile map stuff more.  I will be looking into that and get back with you on how that works for us.  Thanks for the great tips and glad to have to read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Less expensive Polygons by Ant</title>
		<link>http://mqguru.wordpress.com/2008/03/26/less-expensive-polygons/#comment-113</link>
		<dc:creator>Ant</dc:creator>
		<pubDate>Mon, 31 Mar 2008 17:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=17#comment-113</guid>
		<description>Coupla thoughts

a) Scott - since you are in JS, check out MQLatLngCollection.generalize() to reduce shapepoints for performance. we missed this function out of AS3 5.2 - it will be in 5.3.0 for release

b) recommend you both check out 5.3.0 RC3 at http://developer.mapquest.com/beta
 - look for the RemoteCollections - will allow you to loade the polys up from feeds.
 - 5.3.0 also includes min/max zoom levels per shape, and also for an entire collection, which will help increase performance.
 - 5.3.0 also includes Custom tile Layers, so if the zip codes were pre-rendered as tiles, performance should be great
 - take a gander at http://www.mqdemo.com/contractors
Its in AS3 on 5.2 - if thats in any way helpful drop me an email (you both have my addy) and I&#039;ll send you more details on what I did

HTH
Ant</description>
		<content:encoded><![CDATA[<p>Coupla thoughts</p>
<p>a) Scott &#8211; since you are in JS, check out MQLatLngCollection.generalize() to reduce shapepoints for performance. we missed this function out of AS3 5.2 &#8211; it will be in 5.3.0 for release</p>
<p>b) recommend you both check out 5.3.0 RC3 at <a href="http://developer.mapquest.com/beta" rel="nofollow">http://developer.mapquest.com/beta</a><br />
 &#8211; look for the RemoteCollections &#8211; will allow you to loade the polys up from feeds.<br />
 &#8211; 5.3.0 also includes min/max zoom levels per shape, and also for an entire collection, which will help increase performance.<br />
 &#8211; 5.3.0 also includes Custom tile Layers, so if the zip codes were pre-rendered as tiles, performance should be great<br />
 &#8211; take a gander at <a href="http://www.mqdemo.com/contractors" rel="nofollow">http://www.mqdemo.com/contractors</a><br />
Its in AS3 on 5.2 &#8211; if thats in any way helpful drop me an email (you both have my addy) and I&#8217;ll send you more details on what I did</p>
<p>HTH<br />
Ant</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Less expensive Polygons by Scott</title>
		<link>http://mqguru.wordpress.com/2008/03/26/less-expensive-polygons/#comment-107</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 27 Mar 2008 18:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/?p=17#comment-107</guid>
		<description>I am actually considering adding zip code polygons to my app too.  I haven&#039;t embarked on it yet, but will be shortly.  I was considering simply having a checkbox on/next to the map saying &quot;outline zipcodes&quot;.  I would add an Event listener on the map zoom to only show this option at certain zoom levels.

My hope is that, when the user checks the box, that I will be able to capture the edges of the viewable map area, extend it a bit and then request polygons only for that space.

Not sure exactly if that&#039;s possible or how exactly I&#039;ll handle re-querying the polygons when the user is dragging the map around and changing zoom levels, but I will have some handlers for this kind of thing.

My development is with the tiled JavaScript maps, so I need to consider performance even more than you do with Flash.  I&#039;ll keep you posted.

By the way, it&#039;d be great to get your contact information so I have a developer I can bounce things off of here and there.  If you want to, submit your contact info at http://www.arrowpointe.com/contact, that&#039;d be great.  I&#039;ll respond with mine.

Glad to see you blogging about MQ development.</description>
		<content:encoded><![CDATA[<p>I am actually considering adding zip code polygons to my app too.  I haven&#8217;t embarked on it yet, but will be shortly.  I was considering simply having a checkbox on/next to the map saying &#8220;outline zipcodes&#8221;.  I would add an Event listener on the map zoom to only show this option at certain zoom levels.</p>
<p>My hope is that, when the user checks the box, that I will be able to capture the edges of the viewable map area, extend it a bit and then request polygons only for that space.</p>
<p>Not sure exactly if that&#8217;s possible or how exactly I&#8217;ll handle re-querying the polygons when the user is dragging the map around and changing zoom levels, but I will have some handlers for this kind of thing.</p>
<p>My development is with the tiled JavaScript maps, so I need to consider performance even more than you do with Flash.  I&#8217;ll keep you posted.</p>
<p>By the way, it&#8217;d be great to get your contact information so I have a developer I can bounce things off of here and there.  If you want to, submit your contact info at <a href="http://www.arrowpointe.com/contact" rel="nofollow">http://www.arrowpointe.com/contact</a>, that&#8217;d be great.  I&#8217;ll respond with mine.</p>
<p>Glad to see you blogging about MQ development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a Poi. by mqguru</title>
		<link>http://mqguru.wordpress.com/2007/09/21/adding-a-poi/#comment-106</link>
		<dc:creator>mqguru</dc:creator>
		<pubDate>Wed, 12 Mar 2008 11:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://mqguru.wordpress.com/2007/09/21/adding-a-poi/#comment-106</guid>
		<description>Are you working in Flex?  If so are you using their example?  A simple test would be to just make the above code.  It should work great.  IF that is not working i would check your setup on your box.</description>
		<content:encoded><![CDATA[<p>Are you working in Flex?  If so are you using their example?  A simple test would be to just make the above code.  It should work great.  IF that is not working i would check your setup on your box.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
