You are here

function location_views_handler_field_latitude::option_definition in Location 6.3

Same name and namespace in other branches
  1. 7.5 handlers/location_views_handler_field_latitude.inc \location_views_handler_field_latitude::option_definition()
  2. 7.3 handlers/location_views_handler_field_latitude.inc \location_views_handler_field_latitude::option_definition()
  3. 7.4 handlers/location_views_handler_field_latitude.inc \location_views_handler_field_latitude::option_definition()

File

handlers/location_views_handler_field_latitude.inc, line 10
Latitude field handler.

Class

location_views_handler_field_latitude
@file Latitude field handler.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['style'] = array(
    'default' => 'dms',
  );
  return $options;
}