Interface Circle.Builder

    • Method Detail

      • center

        Circle.Builder center​(Collection<Double> center)

        A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].

        Parameters:
        center - A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • center

        Circle.Builder center​(Double... center)

        A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].

        Parameters:
        center - A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • radius

        Circle.Builder radius​(Double radius)

        The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).

        Parameters:
        radius - The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).
        Returns:
        Returns a reference to this object so that method calls can be chained together.