Here’s a simplified version of my code in map_poi_list.php:
<?php foreach($map->pois as $poi) : ?>
<?php
global $post;
$postid = ($poi->postid) ? $poi->postid : $post->ID;
?>
<div>
<span><?php the_tags(); ?></span>
<?php the_content(); ?>
</div>
<?php endforeach; ?>