IMapAddress

Namespace: XPlat.Services.Maps

Represents an address.

public interface IMapAddress

Supported platforms

Platform

Version

.NET Standard

2.0

Xamarin.Android

9.0

Xamarin.iOS

1.0

UWP

10.0.16299

Properties

BuildingName

Gets the building name of an address.

string BuildingName { get; }

BuildingFloor

Gets the building floor of an address.

string BuildingFloor { get; }

BuildingRoom

Gets the building room of an address.

string BuildingRoom { get; }

BuildingWing

Gets the building wing of an address.

string BuildingWing { get; }

StreetNumber

Gets the street number of an address.

string StreetNumber { get; }

Street

Gets the street name of an address.

string Street { get; }

Neighborhood

Gets the neighborhood of an address.

string Neighborhood { get; }

District

Gets the district of an address.

string District { get; }

Town

Gets the town or city of an address.

string Town { get; }

Region

Gets the region (for example, the state or province) of an address.

string Region { get; }

RegionCode

Gets the code for the region (for example, the state or province) of an address.

string RegionCode { get; }

Country

Gets the country of an address.

string Country { get; }

CountryCode

Gets the country code of an address.

string CountryCode { get; }

PostCode

Gets the postal code of an address.

string PostCode { get; }

Continent

Gets the continent of an address.

string Continent { get; }

Last updated