GeoMoose can be configured to off the user additional options for results in the Super Tab.
When adding a service, administrators can configure which tools
are available to a user using the results
configuration object.
Here is an example adding buffer all and removing the count of layers:
app.registerService('select', SelectService, { // set the default layer defaultLayer: 'vector-parcels/parcels', keepAlive: true, results: { showBufferAll: true, showLayerCount: false } });
showFeatureCount
- Defaults totrue
. Show the count of features.showLayerCount
- Defaults totrue
. Show the number of layers queried.showBufferAll
- Defaults tofalse
. Tool to buffer all result features.showZoomToAll
- Defaults totrue
. Tool to zoom to all result features.