Click or drag to resize

BalloonLocation Enumeration

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Represents the location at which the balloon of a BalloonPushPin should be rendered.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public enum BalloonLocation
Members
  Member nameValueDescription
NorthEast0 The balloon will be rendered to the North-East of the PushPin icon.
NorthWest1 The balloon will be rendered to the North-West of the PushPin icon.
SouthEast2 The balloon will be rendered to the South-East of the PushPin icon.
SouthWest3 The balloon will be rendered to the South-West of the PushPin icon.
Examples
C#
BalloonPushPin bpp = new BalloonPushPin(new LatLon(34, -117));

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

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