如何在GoogleMap Api android中为CameraTarget设置CircularBounds?

时间:2018-06-23 21:23:44

标签: java android google-maps android-studio

我已在地图中心绘制了标记/图钉。 Like This 我希望此标记/图钉(地图中心)不要超出我在某个半径中心绘制的圆。 基本上,我想将用户的平移运动限制在一个圆内。 我尝试过使用

// this code belongs in your button's action
let dummyViewController = UIViewController()
dummyViewController.view.backgroundColor = .white
dummyViewController.navigationItem.title = "TEST"
navigationController?.navigationBar.tintColor = .white
navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white]
navigationController?.pushViewController(dummyViewController, animated: true)

因此设置方形边界区域,这就是为什么我的标记超出绘制的圆的原因。我希望这个区域是圆形的。 Problem

0 个答案:

没有答案