Click or drag to resize

LocationSearchResultType Enumeration

Verizon Connect Logo
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 enum ResultType
Members
  Member nameValueDescription
None0 No result types. For use only as an exclusion mask.
Street1 Results containing a street, with or without a street number.
Region2 Results containing a region without a street.
PostCode4 Results for standalone postcode searches. Does not apply to searches that contain a postcode as part of a larger query.
AllAddresses15 Any result that is based on an address search, including street, region and standalone postcode searches. Only applicable in the context of LocationSearchArgs.
IndividualLocalPointOfInterest16 Results for specifically named points of interest from local sources.
LocalPointOfInterestCategory32 Results for general types of point of interest from local sources, such as 'hotels' or 'hospitals'.
RelativeLocalPointOfInterest64 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').
AllLocalPointsOfInterest240 Any type of point of interest from local sources, ie those not requiring an internet connection. Only applicable in the context of LocationSearchArgs.
IndividualRemotePointOfInterest256 Results for specifically named points of interest from remote sources.
RemotePointOfInterestCategory512 Results for general types of point of interest from remote sources, such as 'hotels' or 'hospitals'.
RelativeRemotePointOfInterest1024 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').
AllRemotePointsOfInterest3840 Any type of point of interest from remote sources, ie those requiring an internet connection. Only applicable in the context of LocationSearchArgs.
IndividualPointOfInterest272 Results for specifically named points of interest, from both local and remote sources. Only applicable in the context of LocationSearchArgs.
PointOfInterestCategory544 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.
RelativePointOfInterest1088 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.
AllPointsOfInterest4080 Any type of point of interest from both local and remote sources. Only applicable in the context of LocationSearchArgs.
ReverseGeocode4096 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.
CustomLocalType1048576 A custom result type for use with local custom speed sources that aren't described by any other result type.
CustomRemoteType4194304 A custom result type for use with remote custom speed sources that aren't described by any other result type.
Debug16777216 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.
AllLocal255848703 Match any result type from a local source. Only applicable in the context of LocationSearchArgs.
All268435455 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