Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

In an app there is extremely use of current location, and i got success in using current location but the thing is i am not able to find current location in house or basement etc. so what i think that we can use ip address to get location then will get longitude n latitude.I am not getting current location while using ip address(i can find ip address) in iPhone.Could you please help me to sort out the issue.Thanks in Advance.

Manjot Singh (iPhone Software Developer)

share|improve this question
This question already exist on Stack Overflow: Get IP address of the current Wi-Fi access point on a iPhone?. – j_freyre Feb 28 '11 at 11:50

marked as duplicate by Peter Mortensen, Simon Goldeen, Konstantin D - Infragistics, MrBoJangles, iTech Feb 27 at 20:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 0 down vote accepted

I am using the same, and it works fine when I am outside of my house, but in case I am inside the house or in basement it doesn't get current location.

I am saying while using ipaddress we can get location so we will have a current location then can get longitude and latitude of particular location using g

share|improve this answer

First check whether your gps is on in your device.

You can use CLLocationManager to get your current location.

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{
    //get your current location here
}
- (void)locationManager:(CLLocationManager *)manager 
       didFailWithError:(NSError *)error{

}

Use these methods to get location.

share|improve this answer
I am using the same...n i works fine when i am outside of my house....but in case i am inside the house or in basement it didnt get current location i am saying while using ipaddress we can get location so we will have a current location then can get longitude and latitude of particular location using google api...... – ManjotSingh Feb 28 '11 at 11:46

I am not sure what the question is, but I think you have an IP address and you want to know which location is associated with it, right ? If so, you're out of luck. There are some databases to map these, but they can only tell you where the owner of the IP is located... and that is your ISP, not you (the customer).

On iOS, there's Core Location, doesn't that work for you ?

share|improve this answer
@DarkDust.....I am using Core Location but while sitting in house or in basement app runs but didnt get current location....i am saying i can get ipaddress of iPhone and using that i want to know the location and later will generate longitude and latitude of location using google api...... – ManjotSingh Feb 28 '11 at 11:42

Not the answer you're looking for? Browse other questions tagged or ask your own question.