Click or drag to resize

PushPin Constructor (LatLon, Int32)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a new pushpin at the given location (as a LatLon) with a selected icon.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public PushPin(
	LatLon location,
	int icon
)

Parameters

location
Type: Telogis.GeoBaseLatLon
A LatLon describing the pushpin's intended location.
icon
Type: SystemInt32
The icon number. See IconCache.
Remarks
See Icon.
Examples
C#
PushPin aPin = new PushPin(new LatLon(34, -118), 20);
// Creates a PushPin with a blue circle icon
See Also