You are here

class MapFieldGeofield in Static Map 7

Class MapFieldGeofield

Hierarchy

Expanded class hierarchy of MapFieldGeofield

1 string reference to 'MapFieldGeofield'
staticmap_staticmap_field_alter in ./staticmap.module
Implements hook_staticmap_field_alter().

File

includes/MapFieldGeofield.php, line 11
Geofield provider.

View source
class MapFieldGeofield extends MapFieldBase {

  /**
   * Geodata provider.
   *
   * @inheritdoc
   */
  public function provideGeodata(&$items, &$settings) {
    $return = array();
    foreach ($items as $item) {
      $return[] = $item['lat'] . ', ' . $item['lon'];
    }
    return $return;
  }

}

Members