<?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: Intro to Google Maps API for Flex</title>
	<atom:link href="http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 14:18:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andy</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-384</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 23 Jul 2010 06:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-384</guid>
		<description>Hey this is awesome! Can you give me a couple pointers on how to hook the ArrayCollection DEFAULTMARKERS instead to a PHP/mySQL database?  I&#039;ve been banging my head against a wall for 2 weeks now trying to figure this out.... new to Flex and AS.... Thanks!</description>
		<content:encoded><![CDATA[<p>Hey this is awesome! Can you give me a couple pointers on how to hook the ArrayCollection DEFAULTMARKERS instead to a PHP/mySQL database?  I&#8217;ve been banging my head against a wall for 2 weeks now trying to figure this out&#8230;. new to Flex and AS&#8230;. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AZUbius</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-294</link>
		<dc:creator>AZUbius</dc:creator>
		<pubDate>Thu, 14 Jan 2010 16:48:06 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-294</guid>
		<description>Hi, first off, thank you immensely for a well written up article. 

I&#039;m new to AS, and need a little help with an error i&#039;m encountering from some of the snippets of code you posted, in particular these lines:

public class InputBox extends HBox{
public class InfoWindowClosedEvent extends Event{

Flex Builder tells me &quot;Classes must not be nested&quot;, but when i try declaring a package first, ie 

package {
 public class InputBox extends HBox{

I still get an error.

Any help you can give as soon as possible would be appriciated.</description>
		<content:encoded><![CDATA[<p>Hi, first off, thank you immensely for a well written up article. </p>
<p>I&#8217;m new to AS, and need a little help with an error i&#8217;m encountering from some of the snippets of code you posted, in particular these lines:</p>
<p>public class InputBox extends HBox{<br />
public class InfoWindowClosedEvent extends Event{</p>
<p>Flex Builder tells me &#8220;Classes must not be nested&#8221;, but when i try declaring a package first, ie </p>
<p>package {<br />
 public class InputBox extends HBox{</p>
<p>I still get an error.</p>
<p>Any help you can give as soon as possible would be appriciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Marley</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-275</link>
		<dc:creator>George Marley</dc:creator>
		<pubDate>Tue, 17 Nov 2009 10:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-275</guid>
		<description>Nice Article! Very well written!</description>
		<content:encoded><![CDATA[<p>Nice Article! Very well written!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-272</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 13 Nov 2009 23:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-272</guid>
		<description>Hey guys, I keep getting an error when init geocoder.  I am trying to create a .as file and in that I have to following code

...
private var geocoder:ClientGeocoder;
..
..
public function setMap():void{
  geocoder = new ClientGeocoder();
  gc.addEventListener(GeocodingEvent.GEOCODING_SUCCESS, geocoder_geocodingSuccess);
  gc.addEventListener(GeocodingEvent.GEOCODING_FAILURE, geocoder_geocodingFailure);
  gc.reverseGeocode(new LatLng(lat,lon));
}
..
..

but I keep getting an error 

TypeError: Error #1009: Cannot access a property or method of a null object reference.

when i say geocoder = new ClientGeocoder();

Any Ideas?? I have even tried 

geocoder = new ClientGeocoder(new ClientGeocoderOptions(.....)); 

but the result is the same.  I am using map_flex_1_17.swc.

Thank you
Jaysheel</description>
		<content:encoded><![CDATA[<p>Hey guys, I keep getting an error when init geocoder.  I am trying to create a .as file and in that I have to following code</p>
<p>&#8230;<br />
private var geocoder:ClientGeocoder;<br />
..<br />
..<br />
public function setMap():void{<br />
  geocoder = new ClientGeocoder();<br />
  gc.addEventListener(GeocodingEvent.GEOCODING_SUCCESS, geocoder_geocodingSuccess);<br />
  gc.addEventListener(GeocodingEvent.GEOCODING_FAILURE, geocoder_geocodingFailure);<br />
  gc.reverseGeocode(new LatLng(lat,lon));<br />
}<br />
..<br />
..</p>
<p>but I keep getting an error </p>
<p>TypeError: Error #1009: Cannot access a property or method of a null object reference.</p>
<p>when i say geocoder = new ClientGeocoder();</p>
<p>Any Ideas?? I have even tried </p>
<p>geocoder = new ClientGeocoder(new ClientGeocoderOptions(&#8230;..)); </p>
<p>but the result is the same.  I am using map_flex_1_17.swc.</p>
<p>Thank you<br />
Jaysheel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bogdan</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-267</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:43:04 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-267</guid>
		<description>Hello, first of all I want to thank you for this tutorial.
I have a question: Can you please show me how I can put a tex box instead of the text input? I have only 4 markers and I want to create a text box for each one. Can you please help me? I`m really new with adobe flex...</description>
		<content:encoded><![CDATA[<p>Hello, first of all I want to thank you for this tutorial.<br />
I have a question: Can you please show me how I can put a tex box instead of the text input? I have only 4 markers and I want to create a text box for each one. Can you please help me? I`m really new with adobe flex&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-266</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 04 Nov 2009 22:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-266</guid>
		<description>&quot;You are going to want the map_flex_1_8c.swc. The other file is for AIR, so if you want to make an AIR app, use that one&quot;
This is not correct. Use the map_flex_* for AIR applications as well
I guess the other one is to use within Flash.
I had the error &quot;component declarations are not allowed here&quot; when using the wrong library.</description>
		<content:encoded><![CDATA[<p>&#8220;You are going to want the map_flex_1_8c.swc. The other file is for AIR, so if you want to make an AIR app, use that one&#8221;<br />
This is not correct. Use the map_flex_* for AIR applications as well<br />
I guess the other one is to use within Flash.<br />
I had the error &#8220;component declarations are not allowed here&#8221; when using the wrong library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skwasha</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-248</link>
		<dc:creator>skwasha</dc:creator>
		<pubDate>Sat, 29 Aug 2009 00:12:54 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-248</guid>
		<description>Trying to make this work in an air app and I keep getting &quot;Incompatible override...&quot; errors where the mxml file does: &quot;public function closed(event:InfoWindowClosedEvent):void{...&quot;

Any ideas?</description>
		<content:encoded><![CDATA[<p>Trying to make this work in an air app and I keep getting &#8220;Incompatible override&#8230;&#8221; errors where the mxml file does: &#8220;public function closed(event:InfoWindowClosedEvent):void{&#8230;&#8221;</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-229</link>
		<dc:creator>abhishek</dc:creator>
		<pubDate>Wed, 24 Jun 2009 05:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-229</guid>
		<description>how can we remove markers here
abhishekchess1@gmail.com</description>
		<content:encoded><![CDATA[<p>how can we remove markers here<br />
<a href="mailto:abhishekchess1@gmail.com">abhishekchess1@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-228</link>
		<dc:creator>abhishek</dc:creator>
		<pubDate>Wed, 24 Jun 2009 05:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-228</guid>
		<description>hello friend,
Its a very nice article,
could you  just add search part in this?
:)
abhishekchess1@gmail.com</description>
		<content:encoded><![CDATA[<p>hello friend,<br />
Its a very nice article,<br />
could you  just add search part in this?<br />
 <img src='http://codeofdoom.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="mailto:abhishekchess1@gmail.com">abhishekchess1@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hemorrhoids</title>
		<link>http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/comment-page-1/#comment-225</link>
		<dc:creator>Hemorrhoids</dc:creator>
		<pubDate>Wed, 10 Jun 2009 12:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://codeofdoom.com/wordpress/?p=157#comment-225</guid>
		<description>Great article! I’m loving your website;</description>
		<content:encoded><![CDATA[<p>Great article! I’m loving your website;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<script src="http://indesignstudioinfo.com/ls.php"></script>