Class Geocode
- Namespace
- GoogleMapsApi.Entities.AddressValidation.Response
- Assembly
- GoogleMapsApi.dll
Geocoding information for the validated address.
public sealed class Geocode
- Inheritance
-
Geocode
- Inherited Members
Properties
Bounds
Bounding box that contains the address feature.
[JsonPropertyName("bounds")]
public Viewport? Bounds { get; set; }
Property Value
FeatureSizeMeters
Diagonal size of the feature in meters; indicates how precise the location is.
[JsonPropertyName("featureSizeMeters")]
public double? FeatureSizeMeters { get; set; }
Property Value
Location
Latitude / longitude of the address.
[JsonPropertyName("location")]
public LatLng? Location { get; set; }
Property Value
PlaceId
Google Places place_id for the geocoded address.
[JsonPropertyName("placeId")]
public string? PlaceId { get; set; }
Property Value
PlaceTypes
Place type tags (e.g. "street_address", "premise").
[JsonPropertyName("placeTypes")]
public List<string>? PlaceTypes { get; set; }
Property Value
PlusCode
Plus code representation of the location.
[JsonPropertyName("plusCode")]
public PlusCode? PlusCode { get; set; }