BalloonPushPin Constructor (String, LatLon) | |
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
)
Public Sub New (
name As String,
location As LatLon
)
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 BalloonPushPin myPin = new BalloonPushPin("This is a Name Example", new LatLon(33.584224, -117.737976));
See Also