MKMapView 添加图片

http://hi.baidu.com/yunhuaikong/blog/item/26a52283b60f34a16c811997.html

MKMapView 添加图片_第1张图片

未经允许,禁止转载。

出处:http://hi.baidu.com/yunhuaikong/blog/item/26a52283b60f34a16c811997.html

以上为两张图片。如下:


适当的代码段添加如下annotation. MapAnnotation是实现了MKAnnotation的NSObject类。 

        CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(latitude, longitude);

        MapAnnotation *annotation = [[MapAnnotationallocinitWithcoordiante:coordinate];

        [map_view addAnnotations: annotation];

        [annotation release];

        

MKMapView 添加图片_第2张图片

//注意,下面三行重复。截图的时候没有注意。


你可能感兴趣的:(MKMapView 添加图片)