tags:

views:

19

answers:

2

I am using:

[mapView setRegion: animated:];
[mapView regionThatFits:];

methods in oder to bring map view to center after regular intervals of time but i don't want to refresh map or say locate updated locations.

How can i bring map to center (or current location) without refreshing?

Is there any method?

Please give some options clearly as I am new to objective C.

A: 

Did you try:

setCenterCoordinate:animated
Jordan
A: 

You can use

setCenterCoordinate:animated

to set the new center of the map. Refreshing the map will happen automatically as soon as there are parts of the map on the screen which have not been loaded yet (gray squares). I don't think you can prevent the mapview from doing this.

muffix