""https://i.sstatic.net/iBgfo.png" alt="此处的内置图像描述"/ >
是否在调用注解点时 展示了这个波波弗? 是开发者建造的,还是开发者创造的?
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = annotationCoord;
annotationPoint.subtitle = user.purchasedLocation;
[mapView addAnnotation:annotationPoint];
I want to create a popover like the image shown above in my map view . When I added the above code to my app, it only showed the street address. Is there a built in method to display such kind of popover in MapKit framework, as shown above with user image and arrow image?
谢谢