<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Metosphere &#187; Location</title>
	<atom:link href="http://metosphere.com/blog/category/location/feed/" rel="self" type="application/rss+xml" />
	<link>http://metosphere.com/blog</link>
	<description>Mobile Location Browser</description>
	<lastBuildDate>Sat, 06 Mar 2010 03:08:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPhone Location Browser with Latitude and Longitude</title>
		<link>http://metosphere.com/blog/2008/08/20/iphone-location-browser-with-latitude-and-longitude/</link>
		<comments>http://metosphere.com/blog/2008/08/20/iphone-location-browser-with-latitude-and-longitude/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 09:52:45 +0000</pubDate>
		<dc:creator>s</dc:creator>
				<category><![CDATA[Location]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[webapp]]></category>

		<guid isPermaLink="false">http://metosphere.com/blog/2008/08/20/iphone-location-browser-with-latitude-and-longitude/</guid>
		<description><![CDATA[I&#8217;ve been working on a native iPhone version of Metosphere for a while, but after talking to several people I&#8217;ve decided to go in a slightly different direction. I&#8217;m about to submit this to the AppStore, but I wanted to bounce it off a larger audience first.
I&#8217;ve run into several web developers who want to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a native iPhone version of Metosphere for a while, but after talking to several people I&#8217;ve decided to go in a slightly different direction. I&#8217;m about to submit this to the AppStore, but I wanted to bounce it off a larger audience first.</p>
<p>I&#8217;ve run into several web developers who want to make cool webapps for the iPhone using its location information.  Unfortunately, even though they&#8217;re killer web devs, there are several hurdles to overcome such as not having a Mac, needing to learn Objective C, obtaining a certificate, etc.</p>
<p>So I proposed we just create a generic, skeleton, native iPhone app that would access our websites using UIWebView and do all the heavy lifting on the web side.  A generic browser with a URL bar at the top but providing CoreLocation information to the website.  Essentially, like Safari but allowing the website access to location information.</p>
<p>This solved several of the issues we&#8217;d been thinking of:</p>
<ul>
<li>We don&#8217;t all have to pay the SDK fee and spend weeks/months learning it.  Web developers can focus on web development.</li>
<li>Each of us doesn&#8217;t have to go through the hassle of creating an app, getting it approved, and maintaining it over time.  We can just share the generic browser/client.</li>
<li>The App Store is just going to get more crowded, I&#8217;m already getting tired of installing apps and uninstalling them right away.  A general location browser allows someone to quickly try out a site without having to find and download an app.</li>
</ul>
<p>I&#8217;d like to see this project open-sourced, although there&#8217;s been a lot of confusion recently if that&#8217;s allowed with the current SDK agreement.</p>
<p>There are some folks working on similar concepts like <a href="http://phonegap.com/">PhoneGap</a> and <a href="http://webtonative.com">WebToNative</a>, but I think there&#8217;s room for a completely simple solution like this.</p>
<p>Ideally, location information would be an option to expose within Safari, but I&#8217;m not convinced that will ever happen.  There are serious privacy issues if something like that were built into Safari, and it&#8217;s definitely not for most people. But there&#8217;s a subset of folks out there that have a use for something like Metosphere.  Kind of like the location info provided in Google Gears or  the Skyhook Firefox extension.</p>
<p>I was hoping to provide Lat/Long information to websites through HTTP headers, but that&#8217;s not available in UIWebView, so webpages that want location information from the Metosphere browser will need to include a simple Javascript function.</p>
<p>Here&#8217;s a summary of how this works:</p>
<ol>
<li>Install Metosphere on your iPhone (hope it gets approved!)</li>
<li>Create a webpage with a Javascript function called updateLocation that looks something like this:<br />
&lt;html&gt;&lt;head&gt;<br />
&lt;script language=&#8221;javascript&#8221;&gt;<br />
var latitude=0;    //these will be set when the Metosphere browser calls updateLocation()<br />
var longitude=0;function updateLocation(metoLat, metoLng){<br />
latitude=metoLat;<br />
longitude=metoLng;<br />
document.getElementById(&#8220;message&#8221;).innerHTML = &#8220;Your latitude=&#8221;+latitude + &#8221; and longitude=&#8221; + longitude;<br />
//now do something cool with latitude and longitude set<br />
}<br />
&lt;/script&gt;&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;message&#8221;&gt;Location not available&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</li>
<li>Enter your webpage&#8217;s URL in Metosphere&#8217;s location bar and your page should have access to the latitude and longitude.<br />
<img src="http://metosphere.com/images/iphonemeto1.gif" alt="iphone latitude" width="230" height="345" /><img src="http://metosphere.com/images/iphonemeto2.gif" alt="iphone longitude" width="230" height="349" /></li>
<li>Create a webpage/webapp that does something cool with this location information.</li>
</ol>
<blockquote><p><img src="http://metosphere.com/images/iphonemeto3.gif" alt="iphone native" width="230" height="450" /></p></blockquote>
<p>Anyway, that&#8217;s the current direction for this project.  Some cool features to add down the road would be:</p>
<ul>
<li>integration with Yahoo&#8217;s FireEagle</li>
<li>a setting to allow the browser to periodically update location info at set intervals</li>
<li>the ability to create extensions like Firefox</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://metosphere.com/blog/2008/08/20/iphone-location-browser-with-latitude-and-longitude/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iPhone Location Browser</title>
		<link>http://metosphere.com/blog/2008/04/10/iphone-location-browser/</link>
		<comments>http://metosphere.com/blog/2008/04/10/iphone-location-browser/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 10:16:31 +0000</pubDate>
		<dc:creator>s</dc:creator>
				<category><![CDATA[Location]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[fireeagle]]></category>

		<guid isPermaLink="false">http://metosphere.com/blog/2008/04/10/iphone-location-browser/</guid>
		<description><![CDATA[I often run into difficulty explaining the concept of Metosphere since I don&#8217;t always have my laptop with Android emulator at hand.  So I whipped up an iPhone webapp that has similar functionality to the Android version.
I decided to focus on an iPhone webapp for now, since most people I know have unJailbroken iPhones. [...]]]></description>
			<content:encoded><![CDATA[<p>I often run into difficulty explaining the concept of Metosphere since I don&#8217;t always have my laptop with Android emulator at hand.  So I whipped up an iPhone webapp that has similar functionality to the <a href="http://metosphere.com/android-app.html">Android version</a>.</p>
<p>I decided to focus on an iPhone webapp for now, since most people I know have unJailbroken iPhones.  Thankfully, <a href="http://fireeagle.yahoo.net/">FireEagle</a> handles the location info nicely.  The backend is the same, so any geospatial information created in either the iPhone or Android version shows up in the same, um, metosphere.</p>
<p><strong>Features:</strong><br />
- Create geotagged objects at your location (messages, alerts, events, reviews, etc.)<br />
- View geotagged objects created by others in your proximity (list or map)<br />
- List nearby events from Upcoming and Eventful<br />
- List nearby geotagged Wikipedia pages<br />
- I left out the GeoBlog functionality for now since that&#8217;s still in flux while I&#8217;m finalizing the forthcoming Android release.<br />
- I used the <a href="http://clientside.cnet.com/cnet-js-standards/ciui-cnet-iphone-ui/">CiUI</a> iPhone UI instead of IUI because it seems faster.</p>
<p><strong><a href="http://metosphere.com/iphone">Click here for Metosphere for iPhone</a></strong></p>
<p><strong>Some Screenshots:</strong></p>
<p><img src="http://metosphere.com/screenshots/iphone1.jpg" alt="iphone" align="top" height="290" width="230" /><img src="http://metosphere.com/screenshots/iphone2.jpg" alt="iphone" height="346" width="229" /></p>
<p><img src="http://metosphere.com/screenshots/iphone3.jpg" alt="iphone" align="top" height="280" width="230" /> <img src="http://metosphere.com/screenshots/iphone8.jpg" alt="iphone" height="286" width="230" /></p>
<p><img src="http://metosphere.com/screenshots/iphone4.jpg" alt="iphone" align="top" height="280" width="230" /><img src="http://metosphere.com/screenshots/iphone5.jpg" alt="iphone" height="283" width="230" /></p>
<p><img src="http://metosphere.com/screenshots/iphone7.jpg" alt="iphone" align="top" height="280" width="230" /><img src="http://metosphere.com/screenshots/iphone6.jpg" alt="iphone" height="282" width="230" /></p>
]]></content:encoded>
			<wfw:commentRss>http://metosphere.com/blog/2008/04/10/iphone-location-browser/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Events on the horizon</title>
		<link>http://metosphere.com/blog/2008/03/25/events-on-the-horizon/</link>
		<comments>http://metosphere.com/blog/2008/03/25/events-on-the-horizon/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 18:41:51 +0000</pubDate>
		<dc:creator>s</dc:creator>
				<category><![CDATA[Location]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://metosphere.com/blog/2008/03/25/events-on-the-horizon/</guid>
		<description><![CDATA[Some interesting events over the next few months that I&#8217;m looking forward to.
March 26 WhereWednesday &#8211; Social Networking and Location (San Francisco)
April 2 SV-GTUG Mapping the Votes: Building Election Maps (Mountain View)
April 22-25 Web 2.0 (San Francisco)
May 12-14 Where 2.0 (Burlingame, CA)
May 17-18th WhereCamp (Mountain View, CA)
]]></description>
			<content:encoded><![CDATA[<p>Some interesting events over the next few months that I&#8217;m looking forward to.</p>
<p>March 26<a href="http://mariotapia.com/category/wherewednesday/"> WhereWednesday &#8211; Social Networking and Location</a> (San Francisco)</p>
<p>April 2 SV-GTUG <a href="http://sv-gtug.org/event/2008-04-02.html/">Mapping the Votes: Building Election Maps</a> (Mountain View)</p>
<p>April 22-25 <a href="http://www.web2expo.com/">Web 2.0</a> (San Francisco)</p>
<p>May 12-14 <a href="http://en.oreilly.com/where2008/public/content/home">Where 2.0</a> (Burlingame, CA)</p>
<p>May 17-18th <a href="http://wherecamp.pbwiki.com/">WhereCamp</a> (Mountain View, CA)</p>
]]></content:encoded>
			<wfw:commentRss>http://metosphere.com/blog/2008/03/25/events-on-the-horizon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
