Click or drag to resize

BalloonPushPinPreferredLocation Field

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A field representing the preferred location at which the balloon will be rendered. Default is NorthEast.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public BalloonLocation PreferredLocation

Field Value

Type: BalloonLocation
Examples
C#
BalloonPushPin myPin = new BalloonPushPin(new LatLon(33.584224, -117.737976));

// Place the balloon to the bottom-right (assuming the map is aligned north) of the pushpin
myPin.PreferredLocation = BalloonLocation.SouthEast;

// to show the BalloonPushPin, add it to your Map's RenderList
myRendererList.Add(myPin);
See Also