Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase circle size or decrease #5

Open
krtya-softwares opened this issue Jun 23, 2015 · 7 comments
Open

Increase circle size or decrease #5

krtya-softwares opened this issue Jun 23, 2015 · 7 comments

Comments

@krtya-softwares
Copy link

When I increase or decrease it was not display as circle some time it cuts the circle and many more thing
Can you please help me how to resolve it?
I also attached the screen shot please check

screen shot 2015-06-23 at 5 14 55 pm
screen shot 2015-06-23 at 5 16 28 pm

@d0ping
Copy link
Owner

d0ping commented Jun 25, 2015

This problem happens sometimes but I haven't resolve it yet. It relates to the internal mechanisms MapKit and drawing map tiles. To force an update map tiles you should set map region after display mapView. For example you can execute applySelectorSettings (1) method on viewDidAppear instead viewDidLoad or set map region manuall (2).

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];

    // 1
    [self.mapSelectorManager applySelectorSettings];

    // 2
    MKCoordinateRegion region = MKCoordinateRegionMake(self.mapSelectorManager.circleCoordinate, MKCoordinateSpanMake(.15f, .15f));
    [self.mapView setRegion:region animated:NO];
}

@d0ping
Copy link
Owner

d0ping commented Jul 2, 2015

The latest version was fixed bug with cuts the circle after first displaying. But it is will be happen sometimes when increase radius because the circle is drawn on a MKMapView. So every time when you change radius MapView draws it again.

@d0ping
Copy link
Owner

d0ping commented Aug 19, 2015

This issue still relevant for you?

@krtya-softwares
Copy link
Author

Thanks for giving a solution but I still get the issue. but this is better then previous version.
I will try to remove break line of circle.

Please check URL in which display current issue
https://www.dropbox.com/s/lokt9e94b72r0kg/DBMAPSELECTOR.mov?dl=0

@ManiarasuV
Copy link

ManiarasuV commented Sep 15, 2017

Does any one find the work around for this issue?

@krtya-softwares
Copy link
Author

krtya-softwares commented Sep 15, 2017 via email

@gDeep1
Copy link

gDeep1 commented Jan 5, 2024

Hi, Is this issue solvable anyhow?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants