This snippet uses the new navigator.geolocation.getCurrentPosition() feature in Firefox 3.5<p>You will be redirected to Google Maps if you click the folowing link:<p>(You must click "share location" when prompted by the browser, you know, privacy concerns)<p><pre><code> javascript:navigator.geolocation.getCurrentPosition(function(position){window.location.href="http://maps.google.com/?ll="+position.coords.latitude+","+position.coords.longitude;});
</code></pre>
Drop it in your bookmarks toolbar and presto!<p>Or get it from here <a href="http://mylittlehacks.appspot.com/geolocation" rel="nofollow">http://mylittlehacks.appspot.com/geolocation</a>