Thanks for the help.
Could filter the posts, but now appears several maps.
See the code below:
<?php query_posts( array (‘post_type’ => ‘imovel’, ‘meta_key’ => ‘transacao’, ‘meta_value’ => venda) );?>
<?php while (have_posts()) : the_post(); ?>
<?php echo GeoMashup::map( ‘map_content=contextual’ ); ?>
<?php endwhile;?>
How to solve?
It worked! Thank you!
Code follows the house someone needs:
<?php query_posts( array (‘post_type’ => ‘imovel’, ‘meta_key’ => ‘transacao’, ‘meta_value’ => ‘venda’) ); ?>
<?php echo GeoMashup::map( ‘map_content=contextual’ ); ?>
<?php wp_reset_query(); ?>