Labs/Geode: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Download ==
[https://people.mozilla.com/~dolske/dist/geode/geode-latest.xpi Geode Download]
== What's Implemented ==
Geode is based on the [http://dev.w3.org/geo/api/spec-source.html W3C specification for geolocation] in the browser. In particular it implements
Geode is based on the [http://dev.w3.org/geo/api/spec-source.html W3C specification for geolocation] in the browser. In particular it implements


   navigator.lastPosition
   navigator.geolocation.lastPosition
   navigator.getCurrentPosition( successCallback, errorCallback, options )
   navigator.geolocation.getCurrentPosition( successCallback, errorCallback, options )
   navigator.watchPosition (successCallback, errorCallback, options)
   navigator.geolocation.watchPosition (successCallback, errorCallback, options)
   navigator.clearWatch( watchID )
   navigator.geolocation.clearWatch( watchID )


The option argument for both <code>getCurrentPosition</code> and <code>watchPosition</code> functions is ignored. Also, because of various implementation details, <code>watchPosition</code> will call the callback every 30 seconds even if you haven't moved.
The option argument for both <code>getCurrentPosition</code> and <code>watchPosition</code> functions is ignored. Also, because of various implementation details, <code>watchPosition</code> will call the callback every 30 seconds even if you haven't moved.

Latest revision as of 17:19, 7 October 2008

Download

Geode Download

What's Implemented

Geode is based on the W3C specification for geolocation in the browser. In particular it implements

 navigator.geolocation.lastPosition
 navigator.geolocation.getCurrentPosition( successCallback, errorCallback, options )
 navigator.geolocation.watchPosition (successCallback, errorCallback, options)
 navigator.geolocation.clearWatch( watchID )

The option argument for both getCurrentPosition and watchPosition functions is ignored. Also, because of various implementation details, watchPosition will call the callback every 30 seconds even if you haven't moved.