Seasons theme - moving geolocation map to sidebar

I'd like to show the geolocation map in the sidebar in Seasons.

I've found an old post (http://omeka.org/forums/topic/geolocation-map-not-appearing-on-item-page-1) which gets some of the way there.

However, it looks like the old method of using the handy code

<?php echo geolocation_google_map_for_item(); ?>

no longer works.

Is there an equivalent with the 2.x plugin?

Thanks,

Tom

I've managed to answer my own question, as is often the case.

Remove

<?php fire_plugin_hook('public_items_show', array('view' => $this, 'item' => $item)); ?>

..and add back in the hooks back in for just the bits you want, where you want them.

<?php
 echo get_specific_plugin_hook_output('Geolocation', 'public_items_show', array('view' => $this, 'item' => $item));
?>

I've been able to move the social bookmarking and map around like this. Handy.