This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Règles de Confidentialité | |
Règles de Confidentialité de l'application mobile « Jeu de Puzzle Mémoire Fruits pour enfant » | |
Lorsque vous utilisez notre application, vous nous faites confiance. | |
Les présentes règles de confidentialité visent à vous indiquer que l'application Jeu de Puzzle Mémoire Fruits pour enfant ne collecte pas vous donnees. Ces règles sont importantes et nous espérons que vous prendrez le temps de les lire attentivement. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)setupMapSnapshot | |
{ | |
CLLocationCoordinate2D coordinate = self.outlet.annotaion.coordinate; | |
MKMapSnapshotOptions* options = [MKMapSnapshotOptions new]; | |
options.size = self.mapImageView.frame.size; | |
options.scale = [[UIScreen mainScreen] scale]; | |
options.region = MKCoordinateRegionMakeWithDistance(coordinate, 2000.f, 2000.f); | |
MKMapSnapshotter* snapshotter = [[MKMapSnapshotter alloc] initWithOptions:options]; | |