Table of Contents

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

Viewport

FeatureSizeMeters

Diagonal size of the feature in meters; indicates how precise the location is.

[JsonPropertyName("featureSizeMeters")]
public double? FeatureSizeMeters { get; set; }

Property Value

double?

Location

Latitude / longitude of the address.

[JsonPropertyName("location")]
public LatLng? Location { get; set; }

Property Value

LatLng

PlaceId

Google Places place_id for the geocoded address.

[JsonPropertyName("placeId")]
public string? PlaceId { get; set; }

Property Value

string

PlaceTypes

Place type tags (e.g. "street_address", "premise").

[JsonPropertyName("placeTypes")]
public List<string>? PlaceTypes { get; set; }

Property Value

List<string>

PlusCode

Plus code representation of the location.

[JsonPropertyName("plusCode")]
public PlusCode? PlusCode { get; set; }

Property Value

PlusCode