Tagged Questions
0
votes
1answer
41 views
HTML5 mobile - Does getting the geo location use native GPS
in an effort to save battery life in Android im considering using HTML5's navigator to get the lat and lg. So i wanted to know does html5 call the phones gps to get the coordinates or it how is it ...
0
votes
3answers
1k views
navigator.geolocation.getCurrentPosition fails on Android Browser
i'm trying to get the geolocation on Android Browser but nothing happens. I'm using a Samsung Galaxy S3 but i'm not sure about the version of my browser. Android version is 4.1.2
Here is my Code:
if ...
0
votes
1answer
77 views
customize navigator.geolocation bar in html5
is it possible to customize the navigator geolocation bar which is generated by
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {
//....
});
}
...
0
votes
1answer
360 views
Javascript Geolocation: Storing coordinates in an array
I created an HTML button:
...onclick="stLoc();"/>
which gears the stLoc() Javascript function.
My intention is to store the latitude inside the vaulesXarray.
Here's my code:
var valuesX=[];
...
2
votes
1answer
2k views
html navigator “User denied Geolocation”
I have an issue with window.navigator, I'm getting error code 1, "User denied Geolocation" whenever I run the following code as a local html file:
...
1
vote
1answer
232 views
How do you get lat long info using navigator.geolocation when connecting to 192.168.x.x
I'm trying to set up a purely local wireless LAN with no access to the wider internet. i.e. all websites are served from hosts via 192.168.x.x addresses.
One host (192.168.1.100) is serving a webpage ...
0
votes
1answer
612 views
Saving variables outside of navigator.geolocation.getCurrentPosition? (javascript)
I'm trying to play with the scope of js to pull a variable out of navigator.geolocation.getCurrentPosition
var lat;
function callback (position) {
lat = position.coords.latitude;
}
...
0
votes
0answers
162 views
blackberry OS5/6 simulators and devices not giving gps location info to web app
I am testing a little web app and find the in BB OS 5 and OS 6 simulators (and the few devices I've tried) the app never calls my callback functions after I call ...
0
votes
1answer
457 views
How navigator.geolocation.getCurrentPosition gets location coordinates of a client browser
I am using browser API for geolocation like below (codes written below are just for demo)
Client Script using jQuery
$(function () {
$('#link-getlocation').click(function () {
...

