theme_openlayers_map

openlayers/openlayers.module, line 103

Versions
6
theme_openlayers_map($map = array())

Theme function for openlayers_map

Code

<?php
function theme_openlayers_map($map = array()) {
  $output = '
    <div id="'. $map['id'] .'" class="openlayers-map"></div>
  ';
  return $output;
}
?>