美文网首页
iOS 去除百度地图左下角log图标

iOS 去除百度地图左下角log图标

作者: 纵昂 | 来源:发表于2021-03-22 08:39 被阅读0次
   _mapView = [[BMKMapView alloc] init];
    [self.view addSubview:_mapView];
    [_mapView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.right.bottom.offset(0);
        make.top.equalTo(_topLineV.mas_bottom);
    }];
    _mapView.zoomLevel=15;//比例尺
    _zoomIndex = 15;
    [_mapView setMapType:BMKMapTypeStandard];//地图类型
    _mapView.showsUserLocation = YES;
    _mapView.delegate = self;

#pragma mark - 去除百度地图左下角log    -      关键代码复制即用
    UIView *mView = _mapView.subviews.firstObject;
     for (id logoView in mView.subviews)  {
         if ([logoView isKindOfClass:[UIImageView class]])      {
         UIImageView *b_logo = (UIImageView*)logoView;
             b_logo.hidden = YES;
            }
     }
 CLLocationCoordinate2D coor;
    coor.latitude = LATITUDE;
    coor.longitude = LONGITUDE;
  
    [_mapView setCenterCoordinate:coor animated:YES];

相关文章

网友评论

      本文标题:iOS 去除百度地图左下角log图标

      本文链接:https://www.haomeiwen.com/subject/banacltx.html