protected function BBoxQuery::defineOptions in Views GeoJSON 8
TODO: Determine if this is being implemented correctly.
Overrides QueryParameter::defineOptions
File
- src/
Plugin/ views/ argument_default/ BBoxQuery.php, line 60
Class
- BBoxQuery
- The BBOX query string argument default handler.
Namespace
Drupal\views_geojson\Plugin\views\argument_defaultCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['argument'] = [
'default' => '',
];
$options['arg_id'] = [
'default' => 'bbox',
];
return $options;
}