91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ios 高德地圖 地圖上添加多個大頭針 怎么在復用隊列中知道我單擊的是哪一個大頭針

發布時間:2020-06-29 12:14:57 來源:網絡 閱讀:3631 作者:卓行天下 欄目:移動開發
//創建大頭針對象
    MAPointAnnotation *pointAnnotation = [[MAPointAnnotation alloc] init];
    //插入大頭針的位置
    pointAnnotation.coordinate = CLLocationCoordinate2DMake(39.989631, 116.481018);
    //大頭針的標題
    pointAnnotation.title = @"方恒國際";
    //大頭針的子標題
    pointAnnotation.subtitle = @"阜通東大街6號";
    [_mapView addAnnotation:pointAnnotation];

//實現下列方法后能讓地圖上得大頭針彈出氣泡
- (MAAnnotationView *)mapView:(MAMapView *)mapView viewForAnnotation:(id <MAAnnotation>)annotation
{
    if ([annotation isKindOfClass:[MAPointAnnotation class]])
    {
        static NSString *pointReuseIndetifier = @"pointReuseIndetifier";
        MAPinAnnotationView*annotationView = (MAPinAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:pointReuseIndetifier];
        if (annotationView == nil)
        {
            annotationView = [[MAPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:pointReuseIndetifier];
        }
        annotationView.canShowCallout= YES;       //設置氣泡可以彈出,默認為NO
        annotationView.animatesDrop = YES;        //設置標注動畫顯示,默認為NO
        annotationView.draggable = YES;        //設置標注可以拖動,默認為NO
        annotationView.pinColor = MAPinAnnotationColorPurple;
        return annotationView;        
    }

    return nil;
}





用坐標信息判斷   你沒說想要的具體的效果  那我就給你說一種吧  假設你地圖上面有n個大頭針  實際上也就是n個pointAnnotation  你可以通過_mapView.annotations直接獲取到 這是個數組
  在點擊大頭針的方法里面

- (void)mapView:(BMKMapView *)mapView didSelectAnnotationView:(BMKAnnotationView *)view

{

NSArray * array = [NSArray arrayWithArray:_mapView.annotations];

    for (int i=0; i<array.count; i++)

    {

        if (view.annotation.coordinate.latitude ==((BMKPointAnnotation*)array[i]).coordinate.latitude)

        {

            //獲取到當前的大頭針  你可以執行一些操作

        }

        else

        {

            //對其余的大頭針進行操作  我是刪除

            //[_mapView removeAnnotation:array[i]];

        }

    }

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临西县| 百色市| 突泉县| 赤城县| 镇坪县| 衡水市| 夏河县| 甘孜县| 漳州市| 中宁县| 西充县| 永城市| 定边县| 本溪市| 阳江市| 马龙县| 阜宁县| 莱西市| 砚山县| 双城市| 平和县| 兴业县| 布尔津县| 临桂县| 富蕴县| 云霄县| 广德县| 抚顺县| 漳州市| 阿拉善左旗| 柯坪县| 白银市| 保山市| 易门县| 方城县| 都兰县| 渝北区| 木兰县| 临沭县| 晋州市| 河北省|