Click or drag to resize

Predefined Query Tables

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release

GeoBase contains a number of predefined data query tables, which enable certain features to be queried with standard datasets.

Use these table names when performing data queries to narrow the results returned from the data query. For example, to find only golf courses you should query the 'golf_courses' polygon table:

C#
// finds the nearest polygon (of any type) to the location 'loc'
Polygon p = DataQuery.FindNearestPolygon(loc, "all");

// finds the nearest golf course to the location 'loc'
Polygon p = DataQuery.FindNearestPolygon(loc, "golf_courses");
Predefined Polygon Query Tables
all
airports
bays
buildings
cemeteries
cities
counties
countries
golf_courses
hospitals
industrial
islands
major_parks
military
native
oceans
parks
runways
shopping
sports
state_parks
states
universities
water
Predefined PointFeature Query Tables
all
major_cities
cities
small_cities
large_towns
towns
large_villages
villages
small_villages
Predefined Line or MultiLine Query Tables
all
canals
railways
rivers
Next Topic