diff --git a/modules/openlayers_views/views/openlayers_views_style_map.inc b/modules/openlayers_views/views/openlayers_views_style_map.inc
index 65ba8d0..ad635af 100644
--- a/modules/openlayers_views/views/openlayers_views_style_map.inc
+++ b/modules/openlayers_views/views/openlayers_views_style_map.inc
@@ -16,6 +16,12 @@
  */
 class openlayers_views_style_map extends views_plugin_style {
   /**
+   * @var string $map
+   *   Rendered map.
+   */
+  public $map = '';
+
+  /**
    * Set default options
    */
   function option_definition() {
@@ -69,7 +75,7 @@ class openlayers_views_style_map extends views_plugin_style {
     return theme($this->theme_functions(), array(
       'view' => $this->view,
       'options' => $this->options,
-      'map' => $this->render
+      'map' => $this->map
     ));
   }
 }
