Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 246 results for
geolocation
- Page 1
Geolocation
Programming
Web Development
12 Years Ago
by trektrak
…called when the browser has shown support of navigator.
geolocation
function GEOprocess(position) { // update the page…').innerHTML = 'Error: ' + error.message; } if (navigator.
geolocation
) { navigator.
geolocation
.getCurrentPosition(GEOprocess, GEOdeclined); }else{ document.getElementById('geo').innerHTML = 'Your…
Geolocation help
Programming
Web Development
12 Years Ago
by maxamillian
…;/script> <script> function findMe() { if (navigator.
geolocation
!= undefined) { navigator.
geolocation
.watchPosition(onFound, onError); } } function onFound(pos) { var userLat = pos…
Re: Geolocation help
Programming
Web Development
12 Years Ago
by maxamillian
…;/script> <script> function findMe() { if (navigator.
geolocation
!= undefined) { navigator.
geolocation
.watchPosition(onFound, onError); } } function onFound(pos) { var userLat = pos…
Re: Geolocation - how possible is this?
Programming
Web Development
14 Years Ago
by chrishea
…an article that talks about the accuracy and issues for
geolocation
with maxmind as their solution as well. [URL="…;http://www.chehodgins.com/php/free-and-fast-
geolocation
-in-php/"]http://www.chehodgins.com/php/free-and…-fast-
geolocation
-in-php/[/URL] With respect to your question 3…
geolocation + php
Programming
Web Development
10 Years Ago
by brugernavn
Hello, I am trying to "transfer"
geolocation
-data to a php script. I think, that the… type="text/javascript"> function office_getLocation() { if (navigator.
geolocation
) { navigator.
geolocation
.getCurrentPosition(showPosition); } } function showPosition(position) { var lat = position…
Re: geolocation + php
Programming
Web Development
10 Years Ago
by brugernavn
… type="text/javascript"> function office_getLocation() { if (navigator.
geolocation
) { navigator.
geolocation
.watchPosition(showPosition); } } $(function() { showPosition(); }); function showPosition(position) { var lat…
Geolocation - how possible is this?
Programming
Web Development
14 Years Ago
by SiobhanyScot
… next to nothing about PHP but I'm interested in
geolocation
scripts. A couple of months ago, I got a presentation… for this zip). Couple of questions 1. I keep hearing
geolocation
can be a headache and is often wildly inaccurate. True…
Geolocation in HTML5
Programming
Web Development
13 Years Ago
by rotten69
… questions about HTML5 and one of its features that is
geolocation
. My group members and I are thinking to develop a… use to develop it. I suggested the idea of using
Geolocation
(because it uses GoogleMaps) but then we had a look…
Geolocation permissions on different devices
Programming
Web Development
10 Years Ago
by owenransen
If you use JavaScript for
geolocation
the first time someone uses it then his browser will … PC asks for permission every time the JavaScript wants the
geolocation
. Is there a way to get over this? I've…
Re: Geolocation in HTML5
Programming
Web Development
12 Years Ago
by chrislim2888
You can develop a mobile web using HTML5 to capture the
geolocation
information that they checked in. Not that difficult, see this http://www.ipgeo5.com
Geolocation API
Programming
Web Development
16 Years Ago
by architact
Hello, I am wondering how can I install and use
geolocation
api by Google so that I can use it in my website. I have spent 2 hours for this searching on google, yahoo, mamma, ask but not found a solution so please help because I am ready to throw my computer out of the window with myself to follow. Thanks
Geolocation not consistently working even with else statement
Programming
Web Development
13 Years Ago
by raredesign
I know there are more accurate
geolocation
methods, but I want to have it transparent to the …
Re: Geolocation not consistently working even with else statement
Programming
Web Development
13 Years Ago
by Troy III
[QUOTE=raredesign;1758835]I know there are more accurate
geolocation
methods, but I want to have it transparent to the …
Re: Backlink qulity: is geolocation of backlinks important?
Digital Media
Digital Marketing
Search Engine Strategies
17 Years Ago
by stymiee
Geolocation
would only be a factor in country-specific or local search. It will not affect the main SERPs. It will also never affect PR as that is strictly a link popularity indicator.
Re: Geolocation
Programming
Web Development
12 Years Ago
by pritaeas
Usually, a phone's internal settings can be accessed by using it's developer SDK. Which one are you using?
Re: Geolocation
Programming
Web Development
12 Years Ago
by trektrak
I'm using android...
Re: Geolocation
Programming
Web Development
12 Years Ago
by pritaeas
http://developer.android.com/guide/topics/location/strategies.html
Re: Geolocation
Programming
Web Development
12 Years Ago
by trektrak
I still couldn't get the gps ON... ermmm....
Re: Geolocation help
Programming
Web Development
12 Years Ago
by pritaeas
In your each function, you can hide/delete the `li` if it is outside your specified range.
Re: Geolocation help
Programming
Web Development
12 Years Ago
by maxamillian
what code do i use to hide the li in the each function. Thank you
Re: Geolocation help
Programming
Web Development
12 Years Ago
by pritaeas
Since you are using jQuery, you can use: `$(this).hide();`
Re: Geolocation help
Programming
Web Development
12 Years Ago
by maxamillian
Thank you, i have looked at that. How do i use the $(this).hide() code to hide anything within a vicinty of 1KM. This is what i am trying to use if($(this).val() > 1KM){
Re: Geolocation help
Programming
Web Development
12 Years Ago
by pritaeas
Shouldn't that be something like: if (distance > 1) $(this).hide();
Re: Geolocation help
Programming
Web Development
12 Years Ago
by maxamillian
Can you please put that into the code above, i have been trying to write this last part of the code and have had no luck how to change it. it would be much appreciated and help me greatly. thank you
Re: Geolocation help
Programming
Web Development
12 Years Ago
by pritaeas
Put it after line 19.
Re: Geolocation help
Programming
Web Development
12 Years Ago
by pritaeas
Think so, you know what the value should be, I don't.
HTML5, GeoLocation and Coordinates
Programming
Web Development
12 Years Ago
by Octet
…I was planning on using HTML5's
Geolocation
feature alongside OpenStreetMap tile data. Everything … for Location Service Support */ if(navigator.
geolocation
) { /* Begin Geolocating */ var watchID = navigator.
geolocation
.getCurrentPosition(fetchGeoLocation, geoLocationError, { enableHighAccuracy: true…
IP geolocation tools
Hardware and Software
Networking
16 Years Ago
by marchost
-HTTP IP address
geolocation
API -Full list of IP from specific countries -SQL database of world IP addresses with
geolocation
Re: HTML5, GeoLocation and Coordinates
Programming
Web Development
12 Years Ago
by LastMitch
**@AHarrisGsy** I assume you got this code from here: http://html5demos.com/geo It has nothing to do with **
Geolocation
** I think you modify the code a little read this: https://help.openstreetmap.org/questions/1778/how-can-i-display-a-map-with-multiple-markers
Backlink qulity: is geolocation of backlinks important?
Digital Media
Digital Marketing
Search Engine Strategies
17 Years Ago
by timhysniu
… hand is in North America. I'm wondering does the
geolocation
of backlinks affect the quality of my pages, PR and…
1
2
3
5
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC