- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我们在 iOS7 中遇到了 MKMapView 的区域问题。
在我们的应用程序启动并且设备更改了几次 UI 方向后,map.region 返回的值变得非常奇怪。它们往往有一个合理的经度跨度但一个小的纬度跨度,反之亦然,就好像 map 的印象是它的边界已经沿着屏幕的一个边缘被切割成一个狭窄的矩形。发生这种情况后,MKMapView 的实际边界和框架仍然有意义。
通过根据 map 的实际边界计算我们自己的区域,可以解决由此导致的一些问题,但我们仍有一些问题无法解决。例如,当点击注释以显示其标注时, map 有时会平移以将标注移动到它认为它占据的屏幕的一小部分。
有没有其他人遇到过这个问题?
我们的 shim 来实现解决方法如下,以防它们有用:
+(void)setMap: (MKMapView*) map region:(MKCoordinateRegion) region
{
CGRect realBounds = map.bounds;
MKCoordinateRegion claimedRegion = map.region; // the map's claimed region, which is wonkily different after a rotate in ios7
CGRect claimedBounds = [map convertRegion:claimedRegion toRectToView:map]; // the bounds which the map thinks its region occupies
// if we want region to map to realBounds, but the map thinks it is only claimedBounds big, what
// reduced region will map to claimedBounds ?
MKCoordinateRegion reducedRegion = [Utilities sliceRegion: region inBounds: realBounds toReducedBounds: claimedBounds];
[map setRegion:reducedRegion animated:YES];
}
+ (MKCoordinateRegion) sliceRegion: (MKCoordinateRegion) bigRegion inBounds: (CGRect) wholeBounds toReducedBounds: (CGRect) reducedBounds
{
MKCoordinateRegion reducedRegion;
// Coords of our region's corners in lat/long
CLLocationDegrees left = bigRegion.center.longitude - bigRegion.span.longitudeDelta/2.0;
CLLocationDegrees right = bigRegion.center.longitude + bigRegion.span.longitudeDelta/2.0;
CLLocationDegrees top = bigRegion.center.latitude + bigRegion.span.latitudeDelta/2.0;
CLLocationDegrees bottom = bigRegion.center.latitude - bigRegion.span.latitudeDelta/2.0;
// Coords of our bounds in pixels
CGFloat wholeLeft = wholeBounds.origin.x;
CGFloat wholeRight = wholeBounds.origin.x + wholeBounds.size.width;
CGFloat wholeTop = wholeBounds.origin.y;
CGFloat wholeBottom = wholeBounds.origin.y + wholeBounds.size.height;
// Coords of the smaller bounds in pixels
CGFloat reducedLeft = reducedBounds.origin.x;
CGFloat reducedRight = reducedBounds.origin.x + reducedBounds.size.width;
CGFloat reducedTop = reducedBounds.origin.y;
CGFloat reducedBottom = reducedBounds.origin.y + reducedBounds.size.height;
// Now work out what the lat & long values for the corners of the reduced bounds are
CLLocationDegrees newLeft = left + (right-left) * (reducedLeft - wholeLeft) / (wholeRight - wholeLeft);
CLLocationDegrees newRight = left + (right-left) * (reducedRight - wholeLeft) / (wholeRight - wholeLeft);
CLLocationDegrees newTop = top + (bottom - top) * (reducedTop - wholeTop) / (wholeBottom - wholeTop);
CLLocationDegrees newBottom = top + (bottom - top) * (reducedBottom - wholeTop) / (wholeBottom - wholeTop);
reducedRegion.center.longitude = (newRight + newLeft) / 2.0;
reducedRegion.center.latitude = (newBottom + newTop) / 2.0;
reducedRegion.span.longitudeDelta = newRight - newLeft;
reducedRegion.span.latitudeDelta = newTop - newBottom;
return reducedRegion;
}
+(MKCoordinateRegion)getMapRegion: (MKMapView*) map
{
CGRect bounds = map.bounds;
MKCoordinateRegion region = [map convertRect:bounds toRegionFromView:map]; // the region we can see on the screen, not the map's wonky region!
if ((region.span.latitudeDelta < 0.0) || (region.span.longitudeDelta < 0.0) || region.span.longitudeDelta / region.span.latitudeDelta > 5.0 || region.span.latitudeDelta / region.span.longitudeDelta > 5.0 )
{
LogD(@"getMap: region: bad span - lat: %f, long: %f", region.span.latitudeDelta, region.span.longitudeDelta);
}
return region;
}
+(void)setMap: (MKMapView*) map center: (CLLocationCoordinate2D) center
{
CGRect bounds = map.bounds;
MKCoordinateRegion boundsRegion = [map convertRect:bounds toRegionFromView:map]; // the region we can see on the screen
MKCoordinateRegion claimedRegion = map.region; // the map's claimed region, which is wonkily different after a rotate in ios7
CLLocationCoordinate2D offsetCenter; // make up a value to tell the map to center on which will make it really center
offsetCenter.latitude = center.latitude - ( boundsRegion.center.latitude - claimedRegion.center.latitude );
offsetCenter.longitude = center.longitude - ( boundsRegion.center.longitude - claimedRegion.center.longitude );
[map setCenterCoordinate:offsetCenter animated:YES];
}
+(CLLocationCoordinate2D)getMapCenter: (MKMapView*) map
{
CGRect bounds = map.bounds;
MKCoordinateRegion boundsRegion = [map convertRect:bounds toRegionFromView:map]; // the region we can see on the screen
return boundsRegion.center;
}
最佳答案
当我在 iOS 7 上的 LandscapeRight 中设置 map 区域时,一切正常。
当我将设备旋转到 LandscapeLeft 并加载同一区域时, map 会大量移动并缩放到很远的地方。缩放级别需要乘以 100 才能解决问题,即。 50000 变成 5000000 & 我需要从 lat 中减去 23 & 将 3 添加到 lon 即。 (41.0, 29.0) 变为 (18.0, 32.0)。
经过一些测试后,我能够像这样解决 iOS 7 和 iOS 6 的问题(请原谅 iOS 版本检查它的快速和肮脏)
if([[[UIDevice currentDevice] systemVersion] rangeOfString:@"7."].location != NSNotFound){
if(self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft){
CLLocationCoordinate2D startCoord = CLLocationCoordinate2DMake(41.0, 29.0);
[_mapView setRegion:MKCoordinateRegionMakeWithDistance(startCoord, 5000000.0, 5000000.0) animated:NO];
}else if(self.interfaceOrientation == UIInterfaceOrientationLandscapeRight){
CLLocationCoordinate2D startCoord = CLLocationCoordinate2DMake(18.0, 32.0);
[_mapView setRegion:MKCoordinateRegionMakeWithDistance(startCoord, 50000.0, 50000.0) animated:NO];
}
}else{
MKCoordinateRegion region;
region.center.latitude = topLeftCoord.latitude - (topLeftCoord.latitude - bottomRightCoord.latitude) * 0.3;
region.center.longitude = topLeftCoord.longitude + (bottomRightCoord.longitude - topLeftCoord.longitude) * 0.7;
region.span.latitudeDelta = fabs(topLeftCoord.latitude - bottomRightCoord.latitude) * span; // Add a little extra space on the sides
region.span.longitudeDelta = fabs(bottomRightCoord.longitude - topLeftCoord.longitude) * span; // Add a little extra space on the sides
region = [_mapView regionThatFits:region];
[_mapView setRegion:region animated:NO];
}
关于ios - MKMapView 区域在 iOS7 中的方向更改后变得 splinter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19009341/
所以我使用 splinter 登录到一个站点,然后我在登录后抓取 cookie,然后将其保存为 pickled 对象以备后用。 def save_cookie(username, password):
嗨,我想升级我的单声道版本,以便能够使用某些 .Net 4 功能。 我下载了 2.10 压缩包并按照我发现的说明进行了编译,这似乎进展顺利。 这是我得到的输出: $mono -V Mono JIT c
我是 Pov-Ray 的初学者,我正在尝试在 Pov-Ray 中创建一个车床对象,但它看起来有点破损。有人可以给我一些关于如何修复它的建议吗? 我用来创建的代码是 #include "colors.i
from splinter import Browser browser = Browser() browser.visit('http://www.google.com/') 直接从他们的教程开始,
最近,我注意到我的视差代码从左到右出现奇怪的抖动。代码非常简单: $(window).scroll(function(){ var body = $('body'); var top
我尝试了 overflow:hidden 解决方案来解决破坏 border-radius 的背景:http://jsfiddle.net/ypjDC/17/ test tes
当我将 Nilorea 库中的这个多行宏包含在我的 C++ 项目中时,它无法编译。它被标记为外部“C”。 尝试了 GodBolt,GCC 8.1 编译器在以下代码中的 if 语句上 barfs:htt
我在 python 上使用 splinter 模块。我需要检查一个元素在页面上是否可见,似乎唯一的判断方式是 style="display: none;"我找不到检测方法。 如何检查? 最佳答案 如果
这个问题在这里已经有了答案: left and top properties are not animated (2 个答案) 关闭 6 年前。
我需要通过传递一个字符串数组来在页面上执行 JavaScript 函数。我想避免多次调用 browser.execute_script 。 list_of_strings = ['a','b','c'
我正在尝试在以下方面进行浏览器自动化: https://play.google.com/store/apps/details?id=org.mozilla.firefox&hl=en 我可以使用以下方
鉴于此(“ sleep ”方法是为了让您可以看到我正在看的内容): from splinter import Browser import time #from selenium.webdriver.
我使用的是相对简单的组合布局,它确实有效,但在某些情况下,我的 UICollectionView 中的最后一两个单元格的宽度似乎不正确。 我的 collectionView 由具有动态宽度和静态高度的
我的对象列表是如此初始化: $( function() { var $container = $('div.hikashop_products'); $container.isotop
我正在使用jPlayer在页面中嵌入两个音频文件,基本上代码是cut'n'pasted from this page。一个是wav,另一个是mp3。在本地(mac)上一切正常,但是当我将其上传到服务器
在索引的names字段中执行术语汇总时,我得到了错误的结果。 以下是我使用的names字段的映射: { "dbnames": { "properties": { "names"
我想对视频播放(基于 AVPlayer)产生类似 splinter 的效果,它将转换到另一个视频或图像。 是否可以在 iOS5/6 中对这种视频创建这种效果? 如果不是,另一种方法是在最后播放帧的静止
我正在使用 Flask 尝试提供经过处理的图像,例如在模型处理后裁剪或将其转换给用户,但总是很短,因为它会产生一些错误。当我使用 numpy.rot90() 时,它没有按计划旋转我的图像,而是得到了这
XMFLOAT4X4 在矩阵定义中使用并内的并,但是当我尝试使用和不使用额外并的相同方法时,我会在访问模式中得到不同的结果。我不确定这是否是在 union 的初始化中,或者我在实现中可能会出错的地方。
这两条线实际上是点,但是当我运行 lineIntersects 方法时,我得到“true”作为返回值,有谁知道发生了什么或者这是一个错误?这是 documentation link这是source ,
我是一名优秀的程序员,十分优秀!