BalloonPushPin Constructor (LatLon, Boolean) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a new pushpin anchored at the given location. The informational
balloon will contain information about the street address.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public BalloonPushPin(
LatLon location,
bool loadAddress
)
Public Sub New (
location As LatLon,
loadAddress As Boolean
)
Parameters
- location
- Type: Telogis.GeoBaseLatLon
Specifies the latitude and longitude co-ordinates
at which the pin should appear. - loadAddress
- Type: SystemBoolean
If true, display the address of the BalloonPushPin.
If false, the address of the BalloonPushPin will not be shown.
Remarks The address of the BalloonPushPin is reverse-geocoded. If the address
is not required, you may avoid this slight performance penalty by setting
loadAddress to false.
Examples
BalloonPushPin myPin = new BalloonPushPin(new LatLon(33.584224, -117.737976), false);
See Also