getMachineName()); // The map ID. $variables['openlayers']['id'] = $map->getId(); // The map container CSS styles. $variables['openlayers']['styles'] = implode(array_map(function ($key) use ($map) { return $key . ':' . $map->getOption($key) . ';'; }, array('width', 'height'))); // The map element classes. $variables['openlayers']['classes'] = trim(implode( ' ', array( 'openlayers-map', $map->getMachineName(), ((bool) $map->isAsynchronous()) ? 'asynchronous' : NULL, ) )); }