hey
i have been trying to use google gears on a blackberry 9700. here is
my code
function success_callback(p)
{
alert("success_callback");
}
function error_callback(m)
{
alert("error_callback");
}
try
{
provider=google.gears.factory.create('beta.geolocation');
provider.getCurrentPosition(success_callback,error_callback,
{'timeout':40000});
}
catch(e)
{
alert("error"+e);
}
its up here:
http://www.merkwelt.com/people/stan/geo_js/gears_test.html
So it is working on a desktop, but on a blackberry 9700 i get the
permission dialog, but nothing else once i grant permission, no
expection, no error and no success.
Any insights?
Thanks for the help,
Stan