Click or drag to resize

BalloonPushPin Constructor (String, LatLon)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Construct a new BalloonPushPin with a given name, to be placed at the given LatLon. The informational balloon will contain information about the street address and will be displayed by default.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public BalloonPushPin(
	string name,
	LatLon location
)

Parameters

name
Type: SystemString
The name of the new balloon.
location
Type: Telogis.GeoBaseLatLon
The map coordinates to which the balloon will point.
Remarks
The location is Reverse Geocoded to get an Address, from which location information is extracted and placed in the informational balloon. When an address is known, it is strongly recommended to use BalloonPushPin(String, GeocodeAddress) to avoid a performance hit from the Reverse Geocoding, and ensure that the correct (or desired) address is used in labeling the balloon.
Examples
C#
BalloonPushPin myPin = new BalloonPushPin("This is a Name Example", new LatLon(33.584224, -117.737976));
See Also