for a MKMapView : UIView

how could i convert the content of the mkmapview to a uiimage?

although from the mkmapview the end goal (or primary main objective, if you know what i mean) is a NSData var which I can then attach to an email with mimeType "image/png"

kinda of grabbing a screenshot of whatever the MKMapview is showing at any given moment

putting that on a (UIImage)mapImage

NSData *imageData= UIImagePNGRepresentation(mapImage);

any tips?

thanks in advance

link|improve this question

79% accept rate
1  
Just a word of caution. Be very careful what you do with that content you grab from the displayed map. Googles license terms limit what you may do with it: code.google.com/apis/maps/terms.html#section_10_1_3 – Claus Broch May 9 '11 at 7:46
feedback

1 Answer

up vote 6 down vote accepted

Why not try something like this (untested)?

UIGraphicsBeginImageContext(mapView.frame.size);
[mapView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *mapImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

NSData *mapData = UIImagePNGRepresentation(mapImage);
[mapData writeToFile:[self myFilePath:@"yourMap.png"] atomically:YES];
link|improve this answer
Brother, you just destroyed the evil power! thanks! – dhomes May 9 '11 at 8:48
Ha! Glad it worked for you. :) – sudo rm -rf May 9 '11 at 12:26
Here is one of those instances where I wish I could upvote something twice. – BP. Dec 30 '11 at 15:33
Heh, thanks! Glad it helped you. – sudo rm -rf Dec 30 '11 at 16:21
feedback

Your Answer

 
or
required, but never shown

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