nicemap/views/nicemap_views.theme.inc, line 6
- Versions
- 6
template_preprocess_views_view_nicemap_map(&$vars)
Theme preporocess for nicemap view style.
Code
<?php
function template_preprocess_views_view_nicemap_map(&$vars) {
$view = $vars['view'];
$options = $view->style_plugin->options;
$map = $view->style_plugin->build_map();
$points = $view->style_plugin->map_points($vars['rows']);
$vars['map'] = theme('nicemap_map', $points, $map, $options['width'], $options['height'], true);
}
?> 