Region Property

GoogleMap Control Artem.Google

GoogleMap Control Region Property
NamespacesArtem.Google.UIGoogleMapRegion
GoogleMap Control v6.0
The Maps API serves map tiles and biases application behavior, by default, using the country of the host domain from which the API is loaded (which is the USA for maps.google.com). If you wish to alter your application to serve different map tiles or bias the application (such as biasing geocoding results towards the region), you can override this default behavior by adding a region parameter to the Maps API javascript code. The region parameter accepts Unicode region subtag identifiers which (generally) have a one-to-one mapping to country code Top-Level Domains (ccTLDs). Most Unicode region identifiers are identical to ISO 3166-1 codes, with some notable exceptions. For example, Great Britain's ccTLD is "uk" (corresponding to the domain .co.uk) while its region identifier is "GB." For example, to use a Maps API application localized to the United Kingdom, add this settings to the code-behind as shown below:
CopyC#
GoogleMap1.Region = "GB";
Declaration Syntax
C# Visual Basic
public string Region { get; set; }
Public Property Region As String
	Get
	Set
Value
The region.

Assembly: Artem.Google (Module: Artem.Google) Version: 6.0.0.0 (6.0.11322.1118)