//地图区域改变完成后会调用此接口
- (void)mapView:(BMKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{
// 当前屏幕中心点的经纬度
double centerLongitude = self.mapView.region.center.longitude;
double centerLatitude = self.mapView.region.center.latitude;
NSLog(@"==中心点经纬度 %f,%f",centerLatitude, centerLongitude);
//当前屏幕显示范围的经纬度
CLLocationDegrees pointssLongitudeDelta = self.mapView.region.span.longitudeDelta;
CLLocationDegrees pointssLatitudeDelta = self.mapView.region.span.latitudeDelta;
//左上角
double leftUpLong = centerLongitude - pointssLongitudeDelta/2.0;
double leftUpLati = centerLatitude + pointssLatitudeDelta/2.0;
//右上角
double rightUpLong = centerLongitude + pointssLongitudeDelta/2.0;
double rightUpLati = centerLatitude + pointssLatitudeDelta/2.0;
//左下角
double leftDownLong = centerLongitude - pointssLongitudeDelta/2.0;
double leftDownlati = centerLatitude - pointssLatitudeDelta/2.0;
//右下角
double rightDownLong = centerLongitude + pointssLongitudeDelta/2.0;
double rightDownLati = centerLatitude - pointssLatitudeDelta/2.0;
NSLog(@"\n 左上 %f,%f---------\n 右上 %f,%f-------\n 左下 %f,%f----- \n 右下 %f,%f",leftUpLong,leftUpLati,rightUpLong,rightUpLati,leftDownLong,leftDownlati,rightDownLong,rightDownLati);
}
iOS-百度地图获取屏幕显示范围内的经纬度
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 判断一个经纬度是否落在一个指定的区域范围内有多种实现方式比如:调用地图API,Path2D 包和射线法等多种方式,...
- 需求 每次车辆状态改变时(相当于一个定时任务)将需要显示的marker覆盖物+自己当前位置显示在屏幕范围内 官方文...