From what I can tell, this isn't a feature that exists in this particular plugin, but it would certainly be something that would be nice to have. I'd like to be able to take all the map points I set for all our posts or a group of posts and display them on a larger map.
For instance, we have a person who will be live-blogging a trip across Asia and this program will work awesome for single posts, but it would be nice if we could display a kind of master map with all the points he had travelled to. Maybe based on categories?
Just a thought.
http://wordpress.org/extend/plugins/pronamic-google-maps/
It is already possible to create an Google Maps mashup of some posts based on an WordPress query:
if(function_exists('pronamic_google_maps_mashup')) {
pronamic_google_maps_mashup(
array(
'post_type' => 'post'
) ,
array(
'width' => 300 ,
'height' => 200 ,
'map_type_id' => 'satellite' ,
'marker_options' => array(
'icon' => 'http://google-maps-icons.googlecode.com/files/photo.png'
)
)
);
}
Oh, I suppose I could have read the documentation, huh? :). That works perfectly. EXACTLY what I was looking for! Brilliant!