<?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: GPS Geolocation in Safari on iPhone OS 3.0</title>
	<atom:link href="http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/</link>
	<description>Technology, home automation, usability, and whatever else amuses me.</description>
	<lastBuildDate>Tue, 15 May 2012 01:12:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Doug Smith</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2670</link>
		<dc:creator>Doug Smith</dc:creator>
		<pubDate>Mon, 05 Jul 2010 14:26:48 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2670</guid>
		<description>Here&#039;s another great tutorial on geolocation in the browser: http://www.html5rocks.com/tutorials/geolocation/trip_meter/</description>
		<content:encoded><![CDATA[<p>Here&#8217;s another great tutorial on geolocation in the browser: <a href="http://www.html5rocks.com/tutorials/geolocation/trip_meter/" rel="nofollow">http://www.html5rocks.com/tutorials/geolocation/trip_meter/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Smith</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2478</link>
		<dc:creator>Doug Smith</dc:creator>
		<pubDate>Tue, 18 May 2010 16:13:45 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2478</guid>
		<description>I didn&#039;t detail out how to fill a hidden form field in my example. I just meant you could use something similar to how I printed the information on the page but instead use it within a form tag. So instead of
&lt;code&gt;&lt;p&gt;Latitude: &#039; + position.coords.latitude + &#039;&lt;/p&gt;&lt;/code&gt;
maybe you could do something like
&lt;code&gt;&lt;input type=&quot;hidden&quot; name=&quot;latitude&quot; value=&quot;&#039; + position.coords.latitude + &#039;&quot; /&gt;&lt;/code&gt;
within an HTML form.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t detail out how to fill a hidden form field in my example. I just meant you could use something similar to how I printed the information on the page but instead use it within a form tag. So instead of<br />
<code>&lt;p&gt;Latitude: ' + position.coords.latitude + '&lt;/p&gt;</code><br />
maybe you could do something like<br />
<code>&lt;input type=&quot;hidden&quot; name=&quot;latitude&quot; value=&quot;' + position.coords.latitude + '&quot; /&gt;</code><br />
within an HTML form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Stanton</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2477</link>
		<dc:creator>Tim Stanton</dc:creator>
		<pubDate>Tue, 18 May 2010 16:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2477</guid>
		<description>I&#039;m not finding the javascript techniques you mention, I&#039;m struggling to figure out how to do exactly that. being able to use Javascript data totally eludes me.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not finding the javascript techniques you mention, I&#8217;m struggling to figure out how to do exactly that. being able to use Javascript data totally eludes me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Smith</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2437</link>
		<dc:creator>Doug Smith</dc:creator>
		<pubDate>Wed, 28 Apr 2010 21:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2437</guid>
		<description>@erik, You can use the javascript techniques I&#039;ve shown to populate hidden form fields. That form can have a lookup button to submit the form that would then send the hidden field lat/lon data to your server. You could then use that to do whatever database lookups you need.</description>
		<content:encoded><![CDATA[<p>@erik, You can use the javascript techniques I&#8217;ve shown to populate hidden form fields. That form can have a lookup button to submit the form that would then send the hidden field lat/lon data to your server. You could then use that to do whatever database lookups you need.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erik</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2433</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Tue, 27 Apr 2010 13:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2433</guid>
		<description>hi
im new into this and what im looking for is ... if the user on the iphone will go to my website and my website will be able to get his location.
similar to hotel search websites were then even show you  the results layout on google map.

now, i would like to give him the hotels which are near to his location and this is why i need his geo detailes.

it means that my site should be able to grab his location and sort all the hotels in its data base base on the mobile user location

any idea how to do that?</description>
		<content:encoded><![CDATA[<p>hi<br />
im new into this and what im looking for is &#8230; if the user on the iphone will go to my website and my website will be able to get his location.<br />
similar to hotel search websites were then even show you  the results layout on google map.</p>
<p>now, i would like to give him the hotels which are near to his location and this is why i need his geo detailes.</p>
<p>it means that my site should be able to grab his location and sort all the hotels in its data base base on the mobile user location</p>
<p>any idea how to do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Smith</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2429</link>
		<dc:creator>Doug Smith</dc:creator>
		<pubDate>Wed, 21 Apr 2010 16:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2429</guid>
		<description>Your site could get the info. You could include it in a form field (even a hidden field) that the user submits with other form data. Or you could use AJAX to send it back to your site in real time without other user action.

For looking up the nearest city, etc., you want what is called &lt;em&gt;reverse geocoding&lt;/em&gt; Try Googling that term to learn more about it. Here&#039;s a page with a few &lt;a href=&quot;http://groups.google.com/group/Google-Maps-API/web/resources-non-google-geocoders?version=56&amp;pli=1&quot; rel=&quot;nofollow&quot;&gt;reverse geocoding links&lt;/a&gt; to help get you started.</description>
		<content:encoded><![CDATA[<p>Your site could get the info. You could include it in a form field (even a hidden field) that the user submits with other form data. Or you could use AJAX to send it back to your site in real time without other user action.</p>
<p>For looking up the nearest city, etc., you want what is called <em>reverse geocoding</em> Try Googling that term to learn more about it. Here&#8217;s a page with a few <a href="http://groups.google.com/group/Google-Maps-API/web/resources-non-google-geocoders?version=56&#038;pli=1" rel="nofollow">reverse geocoding links</a> to help get you started.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BobFix</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2428</link>
		<dc:creator>BobFix</dc:creator>
		<pubDate>Wed, 21 Apr 2010 07:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2428</guid>
		<description>Great code. Tried it on my site and I was able to display Long/Lat/Alt/Speed/etc. from my iPhone and Android. Can you point me to services where I can translate this data into usable info like City/State so I can use it on my website? Also, how can my site grab this info? Thanks!</description>
		<content:encoded><![CDATA[<p>Great code. Tried it on my site and I was able to display Long/Lat/Alt/Speed/etc. from my iPhone and Android. Can you point me to services where I can translate this data into usable info like City/State so I can use it on my website? Also, how can my site grab this info? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Oakden</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2378</link>
		<dc:creator>Mark Oakden</dc:creator>
		<pubDate>Tue, 23 Mar 2010 21:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2378</guid>
		<description>Thanks for this, got it working in a web app I am developing. However, my iphone seems to cache the location regardless of the maximum age value I pass. This means my app can show its last stored located for up to 10 minutes after I have switched my iphone on - unless I open google maps, in which case it refreshes the location. Anyone else experience this?</description>
		<content:encoded><![CDATA[<p>Thanks for this, got it working in a web app I am developing. However, my iphone seems to cache the location regardless of the maximum age value I pass. This means my app can show its last stored located for up to 10 minutes after I have switched my iphone on &#8211; unless I open google maps, in which case it refreshes the location. Anyone else experience this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jurgen Fechner</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2327</link>
		<dc:creator>Jurgen Fechner</dc:creator>
		<pubDate>Fri, 05 Mar 2010 08:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2327</guid>
		<description>Excellent page to come across by accident, and the possibilities are endless :-) you could even create a trivial pursuit game for outdoor enthusiasts, when reaching a certain location, you get a cryptic clue to your next location and if you are withing a certain radius of that next location you get the next clue...etc... thanks for this page</description>
		<content:encoded><![CDATA[<p>Excellent page to come across by accident, and the possibilities are endless <img src='http://smithsrus.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  you could even create a trivial pursuit game for outdoor enthusiasts, when reaching a certain location, you get a cryptic clue to your next location and if you are withing a certain radius of that next location you get the next clue&#8230;etc&#8230; thanks for this page</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Smith</title>
		<link>http://smithsrus.com/gps-geolocation-in-safari-on-iphone-os-3-0/comment-page-1/#comment-2242</link>
		<dc:creator>Doug Smith</dc:creator>
		<pubDate>Tue, 02 Feb 2010 21:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://smithsrus.com/?p=157#comment-2242</guid>
		<description>Good catch, Cabel. I fixed it here in the post and on my geo test page. Thanks!</description>
		<content:encoded><![CDATA[<p>Good catch, Cabel. I fixed it here in the post and on my geo test page. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

