Formats location for google maps usage (street, house number, city, country).

Namespace: MonoSoftware.MonoX.ModuleGallery
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual string FormatLocation(
	string streetAddress,
	string city,
	string country
)
Visual Basic
Protected Overridable Function FormatLocation ( 
	streetAddress As String,
	city As String,
	country As String
) As String
Visual C++
protected:
virtual String^ FormatLocation(
	String^ streetAddress, 
	String^ city, 
	String^ country
)
F#
abstract FormatLocation : 
        streetAddress : string * 
        city : string * 
        country : string -> string 
override FormatLocation : 
        streetAddress : string * 
        city : string * 
        country : string -> string 

Parameters

streetAddress
Type: System..::..String
Street address.
city
Type: System..::..String
City.
country
Type: System..::..String
Country.

Return Value

Type: String
Formatted location.

See Also