Package com.azure.maps.search.models
Class GeoJsonObject
java.lang.Object
com.azure.maps.search.models.GeoJsonObject
- All Implemented Interfaces:
com.azure.json.JsonSerializable<GeoJsonObject>
- Direct Known Subclasses:
GeoJsonFeature,GeoJsonGeometry
A valid `GeoJSON` object. Please refer to [RFC 7946](https://tools.ietf.org/html/rfc7946#section-3) for details.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic GeoJsonObjectfromJson(com.azure.json.JsonReader jsonReader) Reads an instance of GeoJsonObject from the JsonReader.getBbox()Get the bbox property: Bounding box.getType()Get the type property: Specifies the `GeoJSON` type.Set the bbox property: Bounding box.com.azure.json.JsonWritertoJson(com.azure.json.JsonWriter jsonWriter) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Constructor Details
-
GeoJsonObject
public GeoJsonObject()Creates an instance of GeoJsonObject class.
-
-
Method Details
-
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.- Returns:
- the type value.
-
getBbox
Get 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.- Returns:
- the bbox value.
-
setBbox
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.- Parameters:
bbox- the bbox value to set.- Returns:
- the GeoJsonObject object itself.
-
toJson
- Specified by:
toJsonin interfacecom.azure.json.JsonSerializable<GeoJsonObject>- Throws:
IOException
-
fromJson
Reads an instance of GeoJsonObject from the JsonReader.- Parameters:
jsonReader- The JsonReader being read.- Returns:
- An instance of GeoJsonObject 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 GeoJsonObject.
-