SimpleFeatureSummarize Method | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates a summary for one or more SimpleFeature objects.
The resulting object will be of the following form - note that "features" will only be populated if there are
fewer than 50 features total.
{ "tally" : { "Restaurant" : 2,
"Jeweler" : 1,
"ATM" : 1 },
"features" : [
{ "location" : "33.615575,-117.930215", "type" : "Restaurant", "metadata" : { "Name" : "Rudy's Pub & Grill" } },
{ "location" : "33.615035,-117.930154", "type" : "Restaurant", "metadata" : { "Name" : "Mama D's Italy Kitchen" } },
{ "location" : "33.620420,-117.923972", "type" : "Jeweler", "metadata" : { "Name" : "William Harold Jewelers" } },
{ "location" : "33.614501,-117.932181", "type" : "ATM", "metadata" : { "Name" : "Bank of America ATM" } },
]
}
Namespace:
Telogis.GeoBase.DataSources
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static JSONObject Summarize(
IList<IPointFeature> features
)
Public Shared Function Summarize (
features As IList(Of IPointFeature)
) As JSONObject
Parameters
- features
- Type: System.Collections.GenericIListIPointFeature
The features to create a summary for. Must all be
SimpleFeatures
Return Value
Type:
JSONObjectThe summary object.
See Also