LocationSearchResultType Enumeration | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Possible result types for search results.
Namespace:
Telogis.GeoBase.Geocoding
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax Public Enumeration ResultType
Members
| Member name | Value | Description |
---|
| None | 0 |
No result types. For use only as an exclusion mask.
|
| Street | 1 |
Results containing a street, with or without a street number.
|
| Region | 2 |
Results containing a region without a street.
|
| PostCode | 4 |
Results for standalone postcode searches. Does not apply to searches that contain
a postcode as part of a larger query.
|
| AllAddresses | 15 |
Any result that is based on an address search, including street, region and
standalone postcode searches. Only applicable in the context of LocationSearchArgs.
|
| IndividualLocalPointOfInterest | 16 |
Results for specifically named points of interest from local sources.
|
| LocalPointOfInterestCategory | 32 |
Results for general types of point of interest from local sources, such as 'hotels' or 'hospitals'.
|
| RelativeLocalPointOfInterest | 64 |
Results for relative points of interest from local sources, such as 'Hotels near 20
Enterprise, Aliso Viejo'. This should be used in combination with the type (or types)
of the inner location match (such as
AllAddresses
for '20 Enterprise, Aliso Viejo').
|
| AllLocalPointsOfInterest | 240 |
Any type of point of interest from local sources, ie those not requiring an internet
connection. Only applicable in the context of LocationSearchArgs.
|
| IndividualRemotePointOfInterest | 256 |
Results for specifically named points of interest from remote sources.
|
| RemotePointOfInterestCategory | 512 |
Results for general types of point of interest from remote sources, such as 'hotels' or 'hospitals'.
|
| RelativeRemotePointOfInterest | 1024 |
Results for relative points of interest from remote sources, such as 'Hotels near 20
Enterprise, Aliso Viejo'. This should be used in combination with the type (or types)
of the inner location match (such as
AllAddresses
for '20 Enterprise, Aliso Viejo').
|
| AllRemotePointsOfInterest | 3840 |
Any type of point of interest from remote sources, ie those requiring an internet
connection. Only applicable in the context of LocationSearchArgs.
|
| IndividualPointOfInterest | 272 |
Results for specifically named points of interest, from both local and remote sources.
Only applicable in the context of LocationSearchArgs.
|
| PointOfInterestCategory | 544 |
Results for general types of point of interest, from both local and remote sources,
such as 'hotels' or 'hospitals'. Only applicable in the context of LocationSearchArgs.
|
| RelativePointOfInterest | 1088 |
Results for relative points of interest from both local and remote sources, such as
'Hotels near 20 Enterprise, Aliso Viejo'. This should be used in combination with
the type (or types) of the inner location match (such as
AllAddresses
for '20 Enterprise, Aliso Viejo'). Only applicable in the context of LocationSearchArgs.
|
| AllPointsOfInterest | 4080 |
Any type of point of interest from both local and remote sources. Only applicable in
the context of LocationSearchArgs.
|
| ReverseGeocode | 4096 |
Results found by reverse geocoding. Applicable mainly in the context of
LocationSearchArgs; suggestions will normally have a different result type (eg
Streets) when reverse geocoding is successful.
|
| CustomLocalType | 1048576 |
A custom result type for use with local custom speed sources that aren't described by
any other result type.
|
| CustomRemoteType | 4194304 |
A custom result type for use with remote custom speed sources that aren't described by
any other result type.
|
| Debug | 16777216 |
For use only during development of custom speed sources. Useful for
performing queries that are only applicable to the tested speed source.
Only applicable in the context of LocationSearchArgs.
|
| AllLocal | 255848703 |
Match any result type from a local source. Only applicable in the context of LocationSearchArgs.
|
| All | 268435455 |
Match any result type. Only applicable in the context of LocationSearchArgs.
|
Remarks Not all result types are supported by default, but are made available for
custom search sources to utilize.
See Also