GeoPolygon

public extension GeoPolygon
  • Inicialize um GeoPolygon, com valores para o canto inferior esquerdo e o canto superior direito.

    Retorna nil se o GeoPoints que representa um polígono (anel externo ou orifícios) não tiver pelo menos 4 pontos. Returns nil if the first and the last GeoPoint in a polygon are not the same.

    Declaração

    Swift

    convenience init?(outerRing: [(Double, Double)], holes: [[(Double, Double)]] = [])

    Parâmetros

    outerRing

    O anel externo (externo) do polígono.

    holes

    Os orifícios (se houver) no polígono.

  • Inicialize um GeoPolygon, com valores para o canto inferior esquerdo e o canto superior direito.

    Retorna nil se o GeoPoints que representa um polígono (anel externo ou orifícios) não tiver pelo menos 4 pontos. Returns nil if the first and the last GeoPoint in a polygon are not the same.

    Declaração

    Swift

    convenience init?(outerRing: [(Double, Double)], holes: [(Double, Double)]...)

    Parâmetros

    outerRing

    O anel externo (externo) do polígono.

    holes

    Os orifícios (se houver) no polígono.