- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在 IOS Swift 和 Google map sdk 中,我想要每个顶点都是标记的矩形区域。所以,我不希望多边形有交集,如果有交集,我会自动重新制作成矩形。我可以找到如何检测交叉点,但无法重新制作。我怎样才能做到这一点?..请帮助..
我想做之前到之后。
之前:
之后:
View Controller ..
import UIKit
import GoogleMaps
class CreateLandmarkLocationVC: UIViewController {
var counterMarker: Int = 0
var allMarkers:[GMSMarker] = []
// You don't need to modify the default init(nibName:bundle:) method.
override func loadView() {
// Create a GMSCameraPosition that tells the map to display the
// coordinate -33.86,151.20 at zoom level 6.
let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 6.0)
let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)
mapView.delegate = self
mapView.isMyLocationEnabled = true
view = mapView
}
}
extension CreateLandmarkLocationVC: GMSMapViewDelegate {
func mapView(_ mapView: GMSMapView, didLongPressAt coordinate: CLLocationCoordinate2D) {
// Custom logic here
if counterMarker < 4 {
let marker = GMSMarker()
marker.position = coordinate
marker.title = "I added this with a long tap"
marker.snippet = ""
allMarkers.append(marker)
counterMarker += 1
// Create the polygon, and assign it to the map.
mapView.clear()
let rect = GMSMutablePath()
for mark in allMarkers {
rect.add(mark.position)
mark.map = mapView
}
let polygon = GMSPolygon(path: rect)
polygon.fillColor = UIColor(red: 0.25, green: 0, blue: 0, alpha: 0.05);
polygon.strokeColor = .black
polygon.strokeWidth = 2
polygon.map = mapView
}
}
func mapView(_ mapView: GMSMapView, didLongPressInfoWindowOf marker: GMSMarker) {
marker.map = nil
for (index, cmark) in allMarkers.enumerated() {
if cmark.position.latitude == marker.position.latitude, cmark.position.longitude == marker.position.longitude {
allMarkers.remove(at: index)
break;
}
}
counterMarker -= 1
mapView.clear()
let rect = GMSMutablePath()
for mark in allMarkers {
rect.add(mark.position)
mark.map = mapView
}
// Create the polygon, and assign it to the map.
let polygon = GMSPolygon(path: rect)
polygon.fillColor = UIColor(red: 0.25, green: 0, blue: 0, alpha: 0.05);
polygon.strokeColor = .black
polygon.strokeWidth = 2
polygon.map = mapView
}
}
最佳答案
为了解决您的问题,您应该按顺时针方向重新排列 GMSMutablePath 的坐标。我修改了您的示例并添加了执行此任务的函数 reorderMarkersClockwise()、isLess() 和 getCenterPointOfPoints()。代码片段如下
import UIKit
import GoogleMaps
class ViewController: UIViewController {
var counterMarker: Int = 0
var allMarkers:[GMSMarker] = []
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override func loadView() {
let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 6.0)
let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)
mapView.delegate = self
mapView.isMyLocationEnabled = true
view = mapView
}
}
extension ViewController: GMSMapViewDelegate {
func mapView(_ mapView: GMSMapView, didLongPressAt coordinate: CLLocationCoordinate2D) {
// Custom logic here
if counterMarker < 4 {
let marker = GMSMarker()
marker.position = coordinate
marker.title = "I added this with a long tap"
marker.snippet = ""
allMarkers.append(marker)
counterMarker += 1
// Create the polygon, and assign it to the map.
mapView.clear()
let rect = reorderMarkersClockwise(mapView)
for mark in allMarkers {
mark.map = mapView
}
let polygon = GMSPolygon(path: rect)
polygon.fillColor = UIColor(red: 0.25, green: 0, blue: 0, alpha: 0.05);
polygon.strokeColor = .black
polygon.strokeWidth = 2
polygon.map = mapView
}
}
func mapView(_ mapView: GMSMapView, didLongPressInfoWindowOf marker: GMSMarker) {
marker.map = nil
for (index, cmark) in allMarkers.enumerated() {
if cmark.position.latitude == marker.position.latitude, cmark.position.longitude == marker.position.longitude {
allMarkers.remove(at: index)
break;
}
}
counterMarker -= 1
mapView.clear()
let rect = reorderMarkersClockwise(mapView)
for mark in allMarkers {
mark.map = mapView
}
// Create the polygon, and assign it to the map.
let polygon = GMSPolygon(path: rect)
polygon.fillColor = UIColor(red: 0.25, green: 0, blue: 0, alpha: 0.05);
polygon.strokeColor = .black
polygon.strokeWidth = 2
polygon.map = mapView
}
func reorderMarkersClockwise(_ mapView: GMSMapView) -> GMSMutablePath {
let rect = GMSMutablePath()
if (counterMarker > 1) {
let arr = allMarkers.map{$0.position}.sorted(by: isLess)
for pos in arr {
rect.add(pos)
}
} else {
for mark in allMarkers {
rect.add(mark.position)
}
}
return rect
}
func isLess(_ a: CLLocationCoordinate2D, _ b: CLLocationCoordinate2D) -> Bool {
let center = getCenterPointOfPoints()
if (a.latitude >= 0 && b.latitude < 0) {
return true
} else if (a.latitude == 0 && b.latitude == 0) {
return a.longitude > b.longitude
}
let det = (a.latitude - center.latitude) * (b.longitude - center.longitude) - (b.latitude - center.latitude) * (a.longitude - center.longitude)
if (det < 0) {
return true
} else if (det > 0) {
return false
}
let d1 = (a.latitude - center.latitude) * (a.latitude - center.latitude) + (a.longitude - center.longitude) * (a.longitude - center.longitude)
let d2 = (b.latitude - center.latitude) * (b.latitude - center.latitude) + (b.longitude - center.longitude) * (b.longitude - center.longitude)
return d1 > d2
}
func getCenterPointOfPoints() -> CLLocationCoordinate2D {
let arr = allMarkers.map {$0.position}
let s1: Double = arr.map{$0.latitude}.reduce(0, +)
let s2: Double = arr.map{$0.longitude}.reduce(0, +)
let c_lat = arr.count > 0 ? s1 / Double(arr.count) : 0.0
let c_lng = arr.count > 0 ? s2 / Double(arr.count) : 0.0
return CLLocationCoordinate2D.init(latitude: c_lat, longitude: c_lng)
}
}
您还可以在 GitHub 上找到示例项目:https://github.com/xomena-so/so50679742 .使用您的 API key 运行示例项目。
希望对您有所帮助!
关于swift - 如何在 Swift 中制作没有交点的多边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50679742/
我已经实现了 Bentley-Ottmann-algorithm检测多边形-多边形交叉点。这通常非常有效:由于多边形不自相交,因此两个多边形的线段并集中的任何线段相交表明两个多边形相交。 但是如果我看
我在 Silverlight 中有一个多边形(棋盘游戏的十六进制),例如; public class GridHex : IGridShape { ..... public IList
我创建了一个简单的 DirectX 应用程序来渲染一个顶点场。顶点呈现如下(如果从顶部查看): |\|\|\|\| |\|\|\|\| 每个三角形都是这样渲染的: 1 |\ 2 3 这应该意味着多边形
我的代码的某些部分here : var stage = new Kinetic.Stage({ container: "canvas", width: 300,
我正在尝试从 map 数据构造导航网格物体。步骤之一涉及将二进制图像(其中0表示占用空间,1表示自由空间)转换成平面直线图。 我正在尝试找到一种可靠的方法。我目前的想法是使用Canny边缘检测器,然后
我的任务是编写 MATLAB 代码来生成一个由 4 部分组成的 Logo ,如屏幕截图所示。左上角应为黑色,右下角应为白色。另一个程序应随机选择两种颜色。 我采取了以下方法: clear all cl
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
如何向 google.maps.Rectangle 和 google.maps.Polygon 添加标题? title 属性在 RectangleOptions 中不可用.我试过了,但没用(对于 go
我有一个表,用于将表上的段存储为多边形。然后我想获取所有被另一个多边形接触的线段,例如正方形或圆形。图片上:http://img.acianetmedia.com/GJ3 我将灰色小框表示为段和 bi
我正在我的网站上使用 CSS 来制作形状。它在 chrome 中运行良好,但在 mozilla、internet explorer 中打开时,它无法运行。 有人知道怎么解决吗? 这是 fiddle h
我使用 DrawingManager 在 Google map 上绘制圆形和多边形。我尝试使用下面的代码删除圆形/多边形。 selectedShape.setMap(null); 这里selected
我看到了很多如何检测碰撞的教程,但没有看到如何解决它。我正在制作一个自上而下的游戏,玩家具有圆形碰撞形状,而墙壁是各种多边形。 我正在使用 slick2d。我应该做的是,如果玩家与角落碰撞,我会按法线
我对 tkinter 比较陌生,我正在制作一个只使用正方形的游戏。我正在抄写的书只显示三角形。这是代码: # The tkinter launcher (Already complete) from
我在 OpenCV/Python 中工作,我遇到了这个问题。我已经使用 cv2.minAreaRect() 来获取围绕一组点的边界框。是否有任何其他函数/通用算法可以给我内接多边形(点集)的最大矩形?
如果给定一组线段 S ,我们能否设计一种算法来测试集合 S 中的线段是否可以形成多边形,我对它们是否相交多边形不感兴趣,我只想知道我可以测试什么标准, 任何建议 最佳答案 构建一个图形数据结构,其中节
如何从多个地理位置(经度、纬度值)创建多边形地理围栏。此外,如何在 Android 上跟踪用户进入此地理围栏区域或从该区域退出。 最佳答案 地理围栏只是一组形成多边形的纬度/经度点。获得纬度/经度点列
我想要一个 complex image like this在我的申请中。我想让用户点击复杂的多边形(在这种情况下是有边界的国家/地区)并突出显示他们点击的多边形。我有我需要用于该状态的图像。 我怎样才
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
我想在 python tkinter 中移动对象,特别是多边形。问题出在 is_click 函数中。我似乎无法弄清楚如何确定我是否单击了该对象。代码还没有 100% 完成,移动仍然需要完成,但我现在需
我有一个大多边形,我想找到与该多边形相交的要素,但由于多边形太大,我遇到超时异常。 我试图研究 JTS 方法,但不知道如何使用它。 final List coordinates = List.of(n
我是一名优秀的程序员,十分优秀!