fullJSON property

dynamic fullJSON
getter/setter pair

Property that holds the JSON response that contains the viewport of the place. Has the full JSON response received from the Geolocation API. Can be used to extract extra information of the location. More info on the Geolocation API documentation

All of its information can be accessed like a regular Map. For example:

fullJSON["adress_components"][2]["short_name"]

Implementation

/// Has the full JSON response received from the Geolocation API. Can be used to extract extra information of the location. More info on the [Geolocation API documentation](https://developers.google.com/maps/documentation/geolocation/intro)
///
/// All of its information can be accessed like a regular [Map]. For example:
/// ```
/// fullJSON["adress_components"][2]["short_name"]
/// ```
var fullJSON;