vote up 0 vote down star
1

I need to simulate how my application will look when a user is driving around for a demo. I have a MKMapView, how can I simulate the look of a user driving around which will use the map.userLocation functionality, which obviously will not be available in the demo.

Thanks!

flag

5 Answers

vote up -1 vote down

The answer is NO. Then, how about adding an abstraction layer between your code and MKMapKit? You can do xUnit tests for your objective.

link|flag
vote up 0 vote down check

Well I got something going, I just did essentially this

- (void)moveIcon:(MKAnnotationView*)locationView toLocation:(CLLocation*)newLoc
{
    LocationAnnotation* annotation = [[[LocationAnnotation alloc] initWithCoordinate:newLoc.coordinate] autorelease];
    [locationView setAnnotation:annotation];
    [map setCenterCoordinate:newLoc.coordinate animated:YES];
}

Then I call this guy in a loop between all of my vertices with a slight delay. Works quite qell.

link|flag
vote up 0 vote down

You could also check out iSimulate which claims to be able to simulate several features only available on the iPhone in the iPhone simulator include CoreLocation. I have not tried this myself so your mileage may vary.

link|flag
vote up 0 vote down

I'm not an iPhone dev expert, but how does the map view receive the coordinates? If it's through a function that calls the CoreLocation API, could you possibly just write a function that randomly generates longitude and latitude values at a certain time interval and have your map view pull the coordinates from there instead? Just a thought.

link|flag
The MapKit maps work like this for the pins you drop, but when you put your own location in (the blue circle), the MapKit uses the CoreLocation services internally. Unfortunately, this won't work. – marcc Nov 7 at 23:12
It receives them through a custom Annotation, all of the internals of this annotation are hidden so it is impossible to emulate. – DevDevDev Nov 7 at 23:12
vote up 1 vote down

No way to simulate in iPhone simulator. You'll need to load it onto your device and move around.

link|flag
I didn't mean exactly simulate it using CoreLocation, jsut some way to animate a pin moving around. – DevDevDev Nov 7 at 23:04

Your Answer

Get an OpenID
or

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