<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Andrew Sellick &#187; Google</title>
	<atom:link href="http://www.andrewsellick.com/category/google/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andrewsellick.com</link>
	<description>andrewsellick.com</description>
	<pubDate>Thu, 21 Aug 2008 14:58:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Google releases My Maps</title>
		<link>http://www.andrewsellick.com/26/google-releases-my-maps</link>
		<comments>http://www.andrewsellick.com/26/google-releases-my-maps#comments</comments>
		<pubDate>Fri, 06 Apr 2007 23:15:05 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/26/google-releases-my-maps</guid>
		<description><![CDATA[Google has announced that they are to release their latest technologic wonder known as Google My Maps.
what does Google My Maps do?
The service to be launched in the UK, US, Italy, Germany, France, Canada, Spain, Netherlands, Australia and Japan offers users the ability to add markers (selected from a library), photos, YouTube videos and more.
The [...]]]></description>
			<content:encoded><![CDATA[<p>Google has announced that they are to release their latest technologic wonder known as Google My Maps.</p>
<h3>what does Google My Maps do?</h3>
<p>The service to be launched in the UK, US, Italy, Germany, France, Canada, Spain, Netherlands, Australia and Japan offers users the ability to add markers (selected from a library), photos, YouTube videos and more.</p>
<p>The maps once created can then be listed for public viewing or unlisted so as to keep it private or just allowing friend&rsquo;s access.</p>
<h3>can&#8217;t you do this already?</h3>
<p><a href="http://www.andrewsellick.com/wp-content/uploads/Image/google-my-maps-large.jpg" rel="lightbox"><img width="249" height="180" align="right" title="Google My Maps" alt="Google My Maps" src="http://www.andrewsellick.com/wp-content/uploads/Image/google-my-maps-small.jpg" /></a>  To date such features have only been available to those that know how to develop using the Google Maps API.  I myself have dabbled with the API and found it to be fairly simple to implement, however, this latest product is sure to be a hit with many people around the world and may be helping to push social networking to a new level.</p>
<p>I&rsquo;m sure we will see this as a feature on many MySpace/Facebook pages in the very near future.</p>
<p>As yet the product has only been launched in Australia and can be found on the <a target="_blank" href="http://maps.google.com.au/">Google Maps Australia home page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/26/google-releases-my-maps/feed</wfw:commentRss>
		</item>
		<item>
		<title>Internet Explorer (IE 5, 5.5, 6 and 7) CSS Hacks</title>
		<link>http://www.andrewsellick.com/20/internet-explorer-ie-5-55-6-and-7-css-hacks</link>
		<comments>http://www.andrewsellick.com/20/internet-explorer-ie-5-55-6-and-7-css-hacks#comments</comments>
		<pubDate>Wed, 21 Mar 2007 17:18:58 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/20/internet-explorer-ie-5-55-6-and-7-css-hacks</guid>
		<description><![CDATA[I will start off by saying that I understand both the pros and cons of hacking CSS and I am not condoning it, however, I still think it is worth while showing the hacks out there and the potential to isolate specific browsers by doing this.&#160; This is only going to be a short article [...]]]></description>
			<content:encoded><![CDATA[<p>I will start off by saying that I understand both the pros and cons of hacking CSS and I am not condoning it, however, I still think it is worth while showing the hacks out there and the potential to isolate specific browsers by doing this.&nbsp; This is only going to be a short article reflecting on IE hacks only.</p>
<h3>the hacks</h3>
<p>
Phew.&nbsp; Right now I&rsquo;ve got that out of the way lets start off with one of the most commonly used hacks, the underscore hack.</p>
<p class="code">_width:100%;</p>
<p>
This will work in all IE browsers below IE 7 but NOT IE 7 itself.</p>
<p>
Next we move onto the backslash hack.</p>
<p class="code">w\idth:100%;</p>
<p>
This will work in most browsers (Firefox 2 and 1.5, IE 7 and 6, Opera) however it is not recognised in IE 5.5 and 5.</p>
<p>
Then the star hack.</p>
<p class="code">*width:100%;</p>
<p>
This works in all versions of IE but not other browsers.</p>
<p></p>
<h3>combinations</h3>
<p>
Right now we have some of the main hacks listed we can now start to combine them to good effect.</p>
<p>Lets combine underscore hack and the backslash hack.</p>
<p class="code">_w\idth:50%;</p>
<p>
This will work in IE 6 only;</p>
<p>
Now lets combine the star hack and the backslash hack.</p>
<p class="code">*w\idth:50%;</p>
<p>
This will work in IE 7 and 6.</p>
<p>
Now lets adopt a slightly different method of combing using the star hack and the underscore hack as follows.</p>
<p class="code">*width:50%;<br />
_width:inherit;</p>
<p>
This will only target IE 7 with regards to applying the 50%.</p>
<h3>demo</h3>
<p>Check out this simple <a href="http://www.andrewsellick.com/examples/ie-css-hacks/" target="_blank">IE CSS Hacks demo</a> to see the results.&nbsp; All the columns that are set to a width of 50% have the style applied.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/20/internet-explorer-ie-5-55-6-and-7-css-hacks/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google Maps API UK Postcode Geocoding</title>
		<link>http://www.andrewsellick.com/16/google-maps-api-uk-postcode-geocoding</link>
		<comments>http://www.andrewsellick.com/16/google-maps-api-uk-postcode-geocoding#comments</comments>
		<pubDate>Fri, 16 Mar 2007 12:32:51 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/16/google-maps-api-uk-postcode-geocoding</guid>
		<description><![CDATA[After recently delving in to the depths of the Google Maps API I found one real problem.&#160; It appears that the API does not provide Geocoding for UK postcodes.&#160; This is due to license issues, as The Post Office and Ordnance Survey own the copyright for this data and therefore a fee is required to [...]]]></description>
			<content:encoded><![CDATA[<p>After recently delving in to the depths of the Google Maps API I found one real problem.&nbsp; It appears that the API does not provide Geocoding for UK postcodes.&nbsp; This is due to license issues, as The Post Office and Ordnance Survey own the copyright for this data and therefore a fee is required to obtain it.</p>
<h3>In search of the solution</h3>
<p>
Having crawled the internet for a good while a came across the following article <a href="http://emad.fano.us/blog/?p=277">Emad Fanous</a>.&nbsp; This article details an API that has been developed to return geocoded addresses, postcodes etc.</p>
<p>This solution provided everything I required, does exactly what it says on the tin and is easy to implement to boot.&nbsp; Now I did come across postcode lists like <a href="http://www.jibble.org/ukpostcodes/">jibble</a> for example, however, I felt that the API would provide a more complete solution (In the sense of data available) and was more interesting to use :-).</p>
<h3>the code</h3>
<p>The code is very simple and is as follows:</p>
<p class="code">
function gmap_geocode_postcode(postcode){<br />
&nbsp; var s = document.createElement(&#8217;script&#8217;);<br />
&nbsp; s.src = &#8216;http://geo.localsearchmaps.com/?cb=gmap_map_postcode&amp;use=google2&amp;country=uk&amp;zip=&#8217; + postcode;<br />
&nbsp; s.type = &#8216;text/javascript&#8217;;<br />
&nbsp; document.getElementsByTagName(&#8217;head&#8217;)[0].appendChild(s);<br />
}</p>
<p class="code"> function gmap_map_postcode(lon, lat){<br />
&nbsp; map.setCenter(new GLatLng(lon, lat), 13);<br />
}
</p>
<p>Here&#8217;s an example of the  <a href="http://www.andrewsellick.com/examples/google-maps/google-map-postcode.htm" target="_blank">Geocoding for UK postcodes</a> in action.</p>
<h3>scalability</h3>
<p>
Now I wouldn&rsquo;t say this solution will be massively scaleable, however, if you just require a simple address search and you do not believe it will be heavily used then this would be a good solution for you.</p>
<h3>update</h3>
<p>I have recently stumbled upon a payed for service called <a target="_blank" href="http://www.isharemaps.com/products/isharemaps_on_demand/isharemaps_on_demand.html?gclid=CKDkm_fsyosCFSYSQgodgBFEHg">iShareMaps on Demand</a>.&nbsp; The service (for a small fee of around &pound;423 a year) offers a scalable UK Geocoding service that may be usefull if anyone wishes to use geocoding on a high traffic site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/16/google-maps-api-uk-postcode-geocoding/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google maps adds Traffic Flow</title>
		<link>http://www.andrewsellick.com/12/google-maps-adds-traffic-flow</link>
		<comments>http://www.andrewsellick.com/12/google-maps-adds-traffic-flow#comments</comments>
		<pubDate>Fri, 02 Mar 2007 10:38:22 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/12/google-maps-adds-traffic-flow</guid>
		<description><![CDATA[I have just found a very usefull article on Google and their latest bult on to Google maps.  It would seem they have added a Traffic Flow layer in the UI displaying flow reports.
This is another nice touch and undoubtedly adding to Googles world domination plans (if only in a very small way), however, [...]]]></description>
			<content:encoded><![CDATA[<p>I have just found a very usefull article on Google and their latest bult on to Google maps.  It would seem they have added a Traffic Flow layer in the UI displaying flow reports.</p>
<p>This is another nice touch and undoubtedly adding to Googles world domination plans (if only in a very small way), however, it is still a worth while look.</p>
<p>See the full article here:</p>
<ul>
<li><a href="http://www.vecosys.com/2007/03/01/google-adds-traffic-flow-reports-but-there-is-a-better-way/" title="Google adds traffic flow reports but there is a better way.">Google adds traffic flow reports but there is a better way</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/12/google-maps-adds-traffic-flow/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.723 seconds -->
