- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试向谷歌地图添加一个 View ,这两个 View 都是使用 Storyboard创建的。为此,我更改了这部分代码:
mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
为此:
mapView = [GMSMapView mapWithFrame:self.view.bounds camera:camera];
self.mapView.myLocationEnabled = YES;
[self.view insertSubview:mapView atIndex:0];
它有效,但默认的“我的位置按钮”在此之后消失了。有没有办法找回默认按钮?我将不胜感激任何帮助。
我试过这个解决方案 My location button not appearing in view (Google maps SDK, ios)但它没有用,或者我没有理解正确,如果这是唯一的解决方案,你能详细解释一下吗?
最佳答案
我通过从 Storyboard 中创建一个按钮并将其连接到此操作来解决这个问题。
- (IBAction)MyLocation:(id)sender {
CLLocation *location = mapView.myLocation;
if (location) {
[mapView animateToLocation:location.coordinate];
} }
在我的例子中,如果我将创建的按钮放在右下角/左下角仍然无法获得它,但其他地方都很好。 (我不知道为什么我认为是因为在索引 0 或类似位置插入 map )。
关于ios - 谷歌地图中的 "My location button"消失了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30633133/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!