Class GeoJsonGeometry

java.lang.Object
com.azure.maps.search.models.GeoJsonObject
com.azure.maps.search.models.GeoJsonGeometry
All Implemented Interfaces:
com.azure.json.JsonSerializable<GeoJsonObject>

public class GeoJsonGeometry extends GeoJsonObject
A valid `GeoJSON` geometry object. The type must be one of the seven valid GeoJSON geometry types - Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon and GeometryCollection. Please refer to [RFC 7946](https://tools.ietf.org/html/rfc7946#section-3.1) for details.
  • Constructor Details

    • GeoJsonGeometry

      public GeoJsonGeometry()
      Creates an instance of GeoJsonGeometry class.
  • Method Details

    • getType

      public GeoJsonObjectType getType()
      Get the type property: Specifies the `GeoJSON` type. Must be one of the nine valid GeoJSON object types - Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon, GeometryCollection, Feature and FeatureCollection.
      Overrides:
      getType in class GeoJsonObject
      Returns:
      the type value.
    • setBbox

      public GeoJsonGeometry setBbox(List<Double> bbox)
      Set the bbox property: Bounding box. Projection used - EPSG:3857. Please refer to [RFC 7946](https://datatracker.ietf.org/doc/html/rfc7946#section-5) for details.
      Overrides:
      setBbox in class GeoJsonObject
      Parameters:
      bbox - the bbox value to set.
      Returns:
      the GeoJsonObject object itself.
    • toJson

      public com.azure.json.JsonWriter toJson(com.azure.json.JsonWriter jsonWriter) throws IOException
      Specified by:
      toJson in interface com.azure.json.JsonSerializable<GeoJsonObject>
      Overrides:
      toJson in class GeoJsonObject
      Throws:
      IOException
    • fromJson

      public static GeoJsonGeometry fromJson(com.azure.json.JsonReader jsonReader) throws IOException
      Reads an instance of GeoJsonGeometry from the JsonReader.
      Parameters:
      jsonReader - The JsonReader being read.
      Returns:
      An instance of GeoJsonGeometry if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
      Throws:
      IOException - If an error occurs while reading the GeoJsonGeometry.