如何自定义百度地图的定位图标 ios
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何自定义百度地图的定位图标 ios相关的知识,希望对你有一定的参考价值。
参考技术A 显示到当前定位位置-(void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation
NSLog(@"当前位置%f,%f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude);
[_mapView updateLocationData:userLocation];
_mapView.centerCoordinate = userLocation.location.coordinate;
CLLocationCoordinate2D loc = [userLocation.location coordinate];
//放大地图到自身的经纬度位置。
BMKCoordinateRegion viewRegion = BMKCoordinateRegionMake(loc, BMKCoordinateSpanMake(0.02f,0.02f));
BMKCoordinateRegion adjustedRegion = [_mapView regionThatFits:viewRegion];
[_mapView setRegion:adjustedRegion animated:YES];
本回答被提问者采纳
IOS 更改百度地图的定位图片
使用了百度地图的SDK,定位图片一直是蓝色的小圆点,很不喜欢,想换成自定义的图片,在网上搜罗了一大通,找到了解决的方案。
写下如下代码:
//定位图层自定义样式参数 BMKLocationViewDisplayParam *displayParam = [BMKLocationViewDisplayParam new]; displayParam.isRotateAngleValid =YES; displayParam.isAccuracyCircleShow =YES; displayParam.locationViewImgName = @"icon_map_location"; displayParam.locationViewOffsetX =0; displayParam.locationViewOffsetY =0; [_mapView updateLocationViewWithParam:displayParam];
locationViewImgName后面是你想要换成的图片的名字。重点来了,要把你的图片存放的位置放在mapapi.bundle/images文件下就可以实现替换功能了。
以上是关于如何自定义百度地图的定位图标 ios的主要内容,如果未能解决你的问题,请参考以下文章