//同步加载异步
// [imageview setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:annotation.subtitle]]]];spa
//异步加载图片
// [imageview sd_setImageWithURL:[NSURL URLWithString:annotation.subtitle] placeholderImage:[UIImage imageNamed:@"placehodeLoading.png"]];同步
//异步加载图片不显示问题it
[imageview sd_setImageWithURL:[NSURL URLWithString:annotation.subtitle] placeholderImage:[UIImage imageNamed:@"placehodeLoading.png"] options:SDWebImageLowPriority | SDWebImageRetryFailed];io