StreetLinkFence Constructor (LatLon) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Construct a street link fence around the
StreetLink where a
specified point lies. The constructor is
passed a
LatLon which should lie on the desired street.
Namespace:
Telogis.GeoBase.GeoFence
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public StreetLinkFence(
LatLon PointOnLink
)
Public Sub New (
PointOnLink As LatLon
)
Parameters
- PointOnLink
- Type: Telogis.GeoBaseLatLon
A LatLon used to specify the street link.
Exceptions Exception | Condition |
---|
ArgumentException | Thrown if PointOnLink does not
translate to a street address when reverse geocoded. |
Examples
GeoFenceCollection myFences = new GeoFenceCollection();
LatLon streetLoc = new LatLon(33.584494, -117.731880);
StreetLinkFence myLinkFence = new StreetLinkFence(streetLoc);
myFences.Add(myLinkFence);
See Also