<?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: Google Maps API part 1: Accurate Geocoding for UK Postcodes</title>
	<atom:link href="http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/feed/" rel="self" type="application/rss+xml" />
	<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/</link>
	<description>Whats in my head...</description>
	<lastBuildDate>Fri, 19 Mar 2010 09:32:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mark c</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-931</link>
		<dc:creator>mark c</dc:creator>
		<pubDate>Thu, 15 Oct 2009 09:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-931</guid>
		<description>thanks Larry
update : I used this method  so I could force a look up of latitude and longitude and get accurate markers - a year ago the marker would only be accurate to first part of postcode e.g AB2 6.. (ignoring the last two letters) but it &#039;seems&#039; the API is now accurate to the full postcode
(I cant find any confirmation that this is the case though)</description>
		<content:encoded><![CDATA[<p>thanks Larry<br />
update : I used this method  so I could force a look up of latitude and longitude and get accurate markers &#8211; a year ago the marker would only be accurate to first part of postcode e.g AB2 6.. (ignoring the last two letters) but it &#8217;seems&#8217; the API is now accurate to the full postcode<br />
(I cant find any confirmation that this is the case though)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: larry</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-877</link>
		<dc:creator>larry</dc:creator>
		<pubDate>Wed, 07 Oct 2009 10:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-877</guid>
		<description>I only use the Ajax calls for the form submission part, just for pre-validation.

but I&#039;ll still check into these API updates and reconfigure if necessary.

btw. I&#039;m always around for small freelance projects...</description>
		<content:encoded><![CDATA[<p>I only use the Ajax calls for the form submission part, just for pre-validation.</p>
<p>but I&#8217;ll still check into these API updates and reconfigure if necessary.</p>
<p>btw. I&#8217;m always around for small freelance projects&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark c</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-870</link>
		<dc:creator>mark c</dc:creator>
		<pubDate>Tue, 06 Oct 2009 18:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-870</guid>
		<description>hi - with a bit of hacking I have it working all I need - it&#039;s a back end function for a cms so I only need the look up when an address is added and it can manage without any ajax

many thanks for making your script public!

are you a freelance developer? (php/mysql/js etc) I often have too much work to do myself... let me know if you&#039;re interested, I&#039;m in south west London</description>
		<content:encoded><![CDATA[<p>hi &#8211; with a bit of hacking I have it working all I need &#8211; it&#8217;s a back end function for a cms so I only need the look up when an address is added and it can manage without any ajax</p>
<p>many thanks for making your script public!</p>
<p>are you a freelance developer? (php/mysql/js etc) I often have too much work to do myself&#8230; let me know if you&#8217;re interested, I&#8217;m in south west London</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: larry</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-866</link>
		<dc:creator>larry</dc:creator>
		<pubDate>Mon, 05 Oct 2009 15:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-866</guid>
		<description>This could be the case of a change in API keys... 

Looks like Google now want you to use jsapi which with my code will give you an issue. When you signup for the ajax api you get a different API key, the js one rather than the one I use here. So I need to update the link I guess and the tutorial (already!)

You actually need the UDS api which I fear may be out dated and replaced in the meantime, can you post up the error you get? it should be a javascript error that states a function cant be loaded etc.. that&#039;ll confirm its a difference in API&#039;s.

In the mean time when I get chance I&#039;ll try and rework the example starting with the info at:

&lt;a href=&quot;http://code.google.com/apis/ajax/documentation/&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/apis/ajax/documentation/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>This could be the case of a change in API keys&#8230; </p>
<p>Looks like Google now want you to use jsapi which with my code will give you an issue. When you signup for the ajax api you get a different API key, the js one rather than the one I use here. So I need to update the link I guess and the tutorial (already!)</p>
<p>You actually need the UDS api which I fear may be out dated and replaced in the meantime, can you post up the error you get? it should be a javascript error that states a function cant be loaded etc.. that&#8217;ll confirm its a difference in API&#8217;s.</p>
<p>In the mean time when I get chance I&#8217;ll try and rework the example starting with the info at:</p>
<p><a href="http://code.google.com/apis/ajax/documentation/" rel="nofollow">http://code.google.com/apis/ajax/documentation/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark c</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-865</link>
		<dc:creator>mark c</dc:creator>
		<pubDate>Mon, 05 Oct 2009 14:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-865</guid>
		<description>hi - I&#039;ve been trying to get this to work but no joy so far

a page where you had it working would be good, then us dumbos could take that to bits to figure out what is the difference - oh but I guess Google might decide you were doing too many queries

cant see what I&#039;m doing wrong..

FYI: google added a &#039;sensor&#039; variable in map query string
and your form input type should be &#039;text&#039; not &#039;textfield&#039; !</description>
		<content:encoded><![CDATA[<p>hi &#8211; I&#8217;ve been trying to get this to work but no joy so far</p>
<p>a page where you had it working would be good, then us dumbos could take that to bits to figure out what is the difference &#8211; oh but I guess Google might decide you were doing too many queries</p>
<p>cant see what I&#8217;m doing wrong..</p>
<p>FYI: google added a &#8217;sensor&#8217; variable in map query string<br />
and your form input type should be &#8216;text&#8217; not &#8216;textfield&#8217; !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google Maps API part 2: Retrieving Postcodes from your database &#124; Lucky Larry</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-750</link>
		<dc:creator>Google Maps API part 2: Retrieving Postcodes from your database &#124; Lucky Larry</dc:creator>
		<pubDate>Tue, 15 Sep 2009 20:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-750</guid>
		<description>[...] all we need to retrieve our results which should already be stored with a geocoded result using the previous tutorial here. remember that in order for this to work you need an API key from google &#8211; again check the [...]</description>
		<content:encoded><![CDATA[<p>[...] all we need to retrieve our results which should already be stored with a geocoded result using the previous tutorial here. remember that in order for this to work you need an API key from google &#8211; again check the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: larry</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-732</link>
		<dc:creator>larry</dc:creator>
		<pubDate>Thu, 10 Sep 2009 03:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-732</guid>
		<description>Hi Rabbul, I&#039;m over in Canada right now, but I&#039;ll write something up for you after I get back this weekend, hows that? :)</description>
		<content:encoded><![CDATA[<p>Hi Rabbul, I&#8217;m over in Canada right now, but I&#8217;ll write something up for you after I get back this weekend, hows that? <img src='http://luckylarry.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: larry</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-731</link>
		<dc:creator>larry</dc:creator>
		<pubDate>Thu, 10 Sep 2009 03:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-731</guid>
		<description>Cheers Rhys, I got bummed out by the lack of geocoding for UK postcodes - even doing 10 Downing Street can provide &#039;interesting&#039; results... glad I&#039;m not the only one who figured out this solution.</description>
		<content:encoded><![CDATA[<p>Cheers Rhys, I got bummed out by the lack of geocoding for UK postcodes &#8211; even doing 10 Downing Street can provide &#8216;interesting&#8217; results&#8230; glad I&#8217;m not the only one who figured out this solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rabbul Hasan</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-722</link>
		<dc:creator>rabbul Hasan</dc:creator>
		<pubDate>Sun, 06 Sep 2009 15:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-722</guid>
		<description>Hello
your code is working nicely. But can you help me to get postcode from a database?

Thanks</description>
		<content:encoded><![CDATA[<p>Hello<br />
your code is working nicely. But can you help me to get postcode from a database?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rhys</title>
		<link>http://luckylarry.co.uk/2009/07/google-maps-api-part-1-accurate-geocoding-for-uk-postcodes/comment-page-1/#comment-721</link>
		<dc:creator>Rhys</dc:creator>
		<pubDate>Sun, 06 Sep 2009 09:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://luckylarry.co.uk/?p=97#comment-721</guid>
		<description>I&#039;ve just completed doing something similar, but before trying again thought I&#039;d see if I can improve my methods, and arrived here via google. I basically did the same, apart from that I don&#039;t search and cache on the fly - I wrote &lt;a href=&quot;http://wheresrhys.co.uk/2009/08/geocoding-in-the-uk/&quot; rel=&quot;nofollow&quot;&gt;similar code&lt;/a&gt; to trawl through a database of postcodes in advance.

It&#039;s so annoying you can&#039;t just get the postcode data straight from the geocoder service. Also, it can be really buggy on UK addresses: http://stackoverflow.com/questions/1115901/picking-the-most-accurate-geocode

Really nice site by the way. Really like the way photos are displayed on the homepage.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just completed doing something similar, but before trying again thought I&#8217;d see if I can improve my methods, and arrived here via google. I basically did the same, apart from that I don&#8217;t search and cache on the fly &#8211; I wrote <a href="http://wheresrhys.co.uk/2009/08/geocoding-in-the-uk/" rel="nofollow">similar code</a> to trawl through a database of postcodes in advance.</p>
<p>It&#8217;s so annoying you can&#8217;t just get the postcode data straight from the geocoder service. Also, it can be really buggy on UK addresses: <a href="http://stackoverflow.com/questions/1115901/picking-the-most-accurate-geocode" rel="nofollow">http://stackoverflow.com/questions/1115901/picking-the-most-accurate-geocode</a></p>
<p>Really nice site by the way. Really like the way photos are displayed on the homepage.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
