Tagged Questions
0
votes
1answer
76 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) {
//....
});
}
...
2
votes
1answer
1k 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:
...