Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to program an augmented reality application with iOS 4. To test this application, I have an iPhone 3GS.

I will explain my problem with an example:

I want to see the name of a mountain top on my device. When I see that mountain on my device screen I see a label with its name.

The idea is to see that label over the mountain or in front of it, but I see the label on the right of the mountain.

I have the same problem if I have more that one location (two mountains and a church, for example). I always see the label on the right.

I'm using iPhone AR Toolkit.

Do I have a problem with iPhone's compass? Do you know why I'm having this problem?

This method is invoked to start listening GPS:

- (void)startListening
{   
    // start our heading readings and our accelerometer readings.
    if (![self locationManager]) {
        CLLocationManager *newLocationManager = [[CLLocationManager alloc] init];
        [self setLocationManager: newLocationManager];
        [newLocationManager release];
        [[self locationManager] setHeadingFilter: 1.0];
        [[self locationManager] setDistanceFilter:2.0];
        [[self locationManager] setDesiredAccuracy: kCLLocationAccuracyNearestTenMeters];
        [[self locationManager] startUpdatingHeading];
        [[self locationManager] startUpdatingLocation];
        [[self locationManager] setDelegate: self];
    }

    if (![self accelerometerManager])
    {
        [self setAccelerometerManager: [UIAccelerometer sharedAccelerometer]];
        [[self accelerometerManager] setUpdateInterval: 0.75];
        [[self accelerometerManager] setDelegate: self];
    }

    if (![self centerCoordinate]) 
        [self setCenterCoordinate:[ARCoordinate coordinateWithRadialDistance:1.0 inclination:0 azimuth:0]];
}

You can find full source code here.

UPDATE

I have also modified the following to use true heading, but I'm getting the same problem:

- (void)locationManager:(CLLocationManager *)manager
       didUpdateHeading:(CLHeading *)newHeading
{
    //latestHeading = degreesToRadian(newHeading.magneticHeading);
    latestHeading = degreesToRadian(newHeading.trueHeading);

    if (prevHeading == -1)  
        prevHeading = newHeading.magneticHeading;

    [self updateCenterCoordinate];
}
share|improve this question
Investigate magnetic north and true north. – EricLeaf Oct 14 '11 at 15:02
@EricLeaf Thanks. I've used both and it still doesn't work properly. – VansFannel Oct 14 '11 at 15:05
Maybe post some code, could be a math error of some sort. I'd have to assume you are using GPS and then determining direction based on the compass, I don't know how accurate the compass is I have never used it. But GPS error can quickly turn this sort of thing useless. Are you getting accurate locations? – EricLeaf Oct 14 '11 at 15:12
I think is my problem, because iPhone AR Toolkit is used by a lot of people and none has complained. I will investigate more and I'll tell you if I find something strange. Thanks. – VansFannel Oct 14 '11 at 15:15
@EricLeaf I've just updated my question with some code. – VansFannel Oct 14 '11 at 15:26
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.