The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
28 views

IP-based city detection (and testing)

What is the best, most efficient way to test city detection? I have IP-based location detection implemented via www.maxmind.com, but now I'd like to test it's accuracy. I know there are various ...
0
votes
0answers
46 views

Is there a way to improve Geolocation by IP?

The church I attend recently had the following screenshot posted on its Facebook page, from an Anonymous member of a tracert he'd performed to a porn site, claiming that it went through the building ...
0
votes
0answers
20 views

Ip address to location mapping in javascript

I have a table that contains visitor locations and ip addresses . I want to extract location from these ip addresses and display top 5 locations. Is there any such solution available in js
0
votes
2answers
36 views

Geolocate an IP without extensions?

Is there a way to locate an IP's country without using any php extensions? I know there are certain extensions, but is this possible without using extensions nor using other websites. For example: ...
0
votes
2answers
31 views

can we retrieve the geo-localization info from the client browser from the $_SERVER in php?

some modern browser have no the possibility to active(or not) the geolocalization. so, when it is activate, how can we retrive it from php server like in the $_SERVER variable ? is there any special ...
0
votes
2answers
52 views

Where can I get geolocation data?

I want to geolocate people from there IP. I know there are services online with an API. I want to know if there is any way to calculate this data on my own (In other words, is there any way to ...
-1
votes
2answers
105 views

How i get location of user from ip address in java?

I am looking for any API which accepts user IP address and returns IP's location.
0
votes
1answer
439 views

Show user exact or approximate location n google maps in asp.net c# in web site

I want to show user current location or approximate location on google maps in my web site using asp.net c#.Is it possible??? If it is kindly help me.I saw many tutorials but fail.
1
vote
0answers
114 views

3D trilateration Java

I have a problem with my App in Java. I have 3 points and 3 distance on the Earth and I need to find 4th point. In my code I used some equeals from wikipedia to count trilateration with that. The ...
0
votes
1answer
91 views

How is HTML5 geolocation API implemented in browsers?

Does every browser implement geolocation API in it's own way? Or is there some standard way all browsers do it? And how do they do it? When can they fail to geolocate?
-2
votes
2answers
212 views

Geolocating IP Address in C#

I am developing an windows 8 app in C# And want to get Geo Coordinates of IP addresses or Want an API that can exactly or nearly geolocate the IP address in windows 8 app! Thanks in advance for your ...
1
vote
0answers
263 views

Google Maps API v3: Geocoder.geocode using IP Address Multiple LatLng

I am using geocoder.geocode(address: <ip_address>, function(results, status){//do something}) to get the LatLng for the IP Address provided. The output shows an array of LatLngs in 'results'. To ...
3
votes
8answers
808 views

getting users geolocation via html5 and javascript

I am trying to get the users geolocation via the html5 geolcation api, and i use the following snippet for it: if (navigator.geolocation) { var timeoutVal = 10 * 1000 * 1000; ...
-3
votes
1answer
77 views

What's wrong with this code? I keep getting errors and, it just doesn't work

The script reveals the appropriate div if the user resides in a specific place with the help of MaxMind's database. But, since I'm still getting my feet wet this little snippet of code I've put ...
2
votes
3answers
81 views

Geolocation - How Does it Work?

I am using a script bought from Code Canyon (a weather script) and the script uses MaxMind GeoIP Javascript Web Service to determine my users current location. The question I have is how does MaxMind ...
-1
votes
2answers
34 views

Grouping registering users into metro areas

I have to group all users registering to my site into metro areas. A metro area is defined a proximity to one of the world's 100 most populous cities. In my proposed solution the user will be ...
0
votes
1answer
274 views

Get region name using MaxMind's GeoLite

I'm a bit confused by how to get the region name and cannot find any documentation on it. I have the database installed wich it 'GeoIP.dat' and 'geoip.inc' in this directory '...IP GeoLite\GeoLite' ...
0
votes
1answer
171 views

How to use ipinfodb to find country code only

I want to find the country code of my site visitor using the ipinfodb API. When I try the following, http://api.ipinfodb.com/v3/ip-country/?key=<My_API_Key>&ip=<Some_IP>, it gives the ...
2
votes
2answers
2k views

Google IP Geolocation API [duplicate]

Possible Duplicate: Obtaining IP-based latitude and longitude with web API Is there any way to use any of the Google APIs to get the IP Geolocation of my User in Live time? I think it will ...
0
votes
0answers
49 views

are there any IP geo-location tools (non-database models) exists?

I am in search of IP geolocation tools that are not based on database(sites like ipfingerprints.com, geoiptool.com and ip2location use database models and provide latitude & longitude). I am ...
0
votes
1answer
159 views

Multiple IP address lookup

I was wondering if there is an API that will allow me to insert a 100 or more IP addresses separated by a new line, trace them retrieve their info all in one push of a button? At the moment I am using ...
3
votes
1answer
70 views

Combined Geolocation frameworks

Basically, there are multiple Geolocation ways - GPS, WiFi positioning (skyhook), IP, cell triangulation. Is there any framework/service which is able to use all of them? (or at least first three) ...
1
vote
3answers
858 views

location detection in web browser

I am searching for a method to locate the user location while visiting my website, i have tried Maxmind but they seems to be inaccurate in the city level. the information i want is (Country, City, ...
0
votes
1answer
341 views

IP address country lookup services [closed]

I have used ipinfodb.com for geolocation in the past, but they have a limit of 2 queries per second and the application I am working on will exceed that limit. I need an alternative for geolocation ...
1
vote
1answer
737 views

Google Maps API v3 - most accurate method of 'Set Current Location'

Ok, so I'm using the Google Maps API for my website, and am making use of the 'Set Current Location' function. It works fine for some users, but for others, it's defaulting to the 'wrong' location. ...
0
votes
2answers
170 views

IP localization: mapping ip->location fixed over time?

I'm administering a web platform and want to get some statistical data, where my users come from. I can store the remote IP and I know that there are localization services that map an IP to a ...
0
votes
2answers
120 views

can some one explain me the life cycle of an Activity

I am not so clear on how the program in working in android. I started working on android for last 2 months and also I am a beginner in Java. So, I am trying my best to develop and learn. Here is the ...
4
votes
2answers
304 views

geolocation of an IP address while using GAE sdk or otherwise

I have hosted my web-app on google appengine (GAE). Does GAE sdk offer any way to find the geolocation of an IP ? If yes please suggest how can I do this .
1
vote
1answer
166 views

Wordpress homepage dependent on user IP location

I'm currently running multisites in WordPress, and I'd like a user, when visiting domain.com to be directed to either city-x.domain.com or city-y.domain.com depending on which they are closer to ...
0
votes
2answers
454 views

how to prepopulate h:inputText in jsf

i have two inputtext which i want to prepopulate with geolocation data that is city and country. This is api i want to use to get location <script language="JavaScript" ...
1
vote
2answers
83 views

Application android Hybrid

I have to develop an android application that use geolocation, and I am confused to choose between web framework mobile and native android application, and If I must to choose a web frawework wich one ...
1
vote
3answers
1k views

Free ip-to-location services? [closed]

We've been using the free location service from http://ipinfodb.com/ and it's proving unreliable, specifically in determining the location of Australian IPs to the nearest state, which is all the ...
1
vote
3answers
352 views

Solutions for finding website visitor's geolocation

I am aware that there are many services which provide geolocation tools for working out where users are visiting from. The website I'm working on is an e-commerce site which runs in multi-territories. ...
0
votes
1answer
230 views

Geo targeting content using php mysql

I have a site for which i want to show a image in india only and for the rest of the world I will show some other image. This means, in India I want to show content for India only and for the ...
0
votes
2answers
869 views

free geolocation ip service for java code

I hav a java application, and I need location info. based on a given IP. Currently, I'm using http://freegeoip.net. I'm using java, and what I do is get the geolocation information for the mentioned ...
0
votes
1answer
293 views

Java How to use GeoLocation in Java?

I've been looking around, but I can't find a simple answer or library where I could just use something along the lines of public String getCountry(String ip) { }
0
votes
0answers
261 views

Template codes - history location - google map - geolocation latitude/longitude [closed]

I want to create a location history using googlemap/geolocation api/MySQL/phpmyadmin for one user and then expand to multiple. So far I have prepared a piece of code for one location, and need to ...
0
votes
1answer
72 views

Suggestion on geoloaction and application type

I'm trying to make a program using c# that will allow me to determine where a computer of mine is located using geolocation services. I was wondering what you would suggest as far as geolocatio APis ...
0
votes
1answer
721 views

How to test IP address geolocation service

There is a IP address geolocation service that will tell the viewer city or country based on IP address. and we might set the default country on menu based on the result of this location service. I ...
1
vote
3answers
341 views

Secured (over https) IP address lookup API services

Are there any geo-location api services like hostip.info that working over https Free services are preferred Thanks
0
votes
3answers
292 views

Detecting user's country and city

I am going to write some web application which should detect user's country and city. For example when user enters site web application should display information in his/her native language, it should ...
0
votes
1answer
554 views

MVC 3 - Redirect based on country?

If I had several country sites, e.g. .co.uk, .de, .fr etc... how would be best to go about redirecting based on IP information (or other sources if recommended)? Using MVC 3 and not browsers that ...
5
votes
6answers
4k views

IP address lookup API: better than hostip.info

I user hostinfo.ip to figure out an IP address location location = urllib.urlopen('http://api.hostip.info/get_html.php?ip='+ipaddress+'&position=true').read() But from my experience ...
2
votes
1answer
244 views

LevelDB key,value from csv

I've huge csv file database of ~5M rows having below fields start_ip,end_ip,country,city,lat,long I am storing these in LevelDB using start_ip as the key and rest as the value. How can I retrieve ...
3
votes
1answer
776 views

IP to Country - IPv6

I've been using an IPv4 to country convertor successfully. eg: get IP of machine and compare to table to get country. I'm updating this currently and with IPv6 around the corner I wanted to ask if ...
2
votes
3answers
276 views

How do I serve a different HTML page depending on user's country?

I'm using Apache 2 and currently static HTML pages. I want my Euro-zone visitors to see a page that has the price in euros. My UK visitors should see a page that the price in GBP. Everyone I want to ...
0
votes
3answers
833 views

What is the best way to get a site visitor's location?

After googling, I found many solutions that don't seem to work or require permission from the user. Looking for something that is easy to use, PHP or Javascript, and does not require the user's ...
1
vote
2answers
333 views

Get location of iPhone via GPS/IP

Im working on a application for which I need to decide in which country the user is. Which is the most accurate way to do this? Should I use GPS or IP-adress? What would be the pros/cons with each ...
0
votes
1answer
1k views

Precise ip localization in cities

I live in city X, but when i try to get my location via ip all the "find location by ip" websites point to city Y. Some ads "Hang tonight with girls in city X" they precisely know my location. How ...
0
votes
1answer
373 views

Detect if W3 Geolocation has already been allowed

I have a Google Map on my site and am using W3 Geolocation to detect a users location when they click a button, "Get current location". Then it should popup with the allow/deny infobar at the top of ...

1 2 3