This is a feature module that is something I find myself reusing extremely often. It introduces a custom block type via bean of 'Leafbean'. Using an addressfield, one can enter an address that will be geocoded into a rendered leaflet map. This is a very simple example of a way to use bean and leaflet together in a way that is very powerful. It's very handy for brochure sites, contact forms, etc.
Multiple locations:
So you want to your bean to show multiple locations? Wow this got even more powerful didn't it! Just change the cardinality in field settings to 'unlimited' and then enter multiple addresses. In the geofield settings, make sure that it's set up to geocode multiple addresses discreetly ( I'll fill in the exact setting here when i get to it).
Custom Leaflet Map
This module comes bundled with a custom example map that it enables and uses. You can use this as an example module for providing your own leaflet map. Currently one of the easiest ways to customize the display of a leaflet map is in code. You can actually use almost the entire Leaflet API if you like. Read more on using the leaflet module at http://drupal.org/project/leaflet
For panels lovers, see the sister module 'Leafpane' which does the same thing with a fieldable panel pane instead of a custom block type.
Allows you to create one filter condition that enables a bunch of filter conditions. Sometimes one condition isn't enough for your filter, but you still want the user to be able to change the filter (group).
For example
You have a View that lists human relationships. You might want a filter that shows all Males in love with Females. That would require 2 conditions: 1) side A = male and 2) side B = female. This would be a group. You'll also want the opposite filter: Females in love with Males. That would be another group. You might also want to show all gay relationships where both sides are older than 60. This would require several conditions (and be another group).
How?
You add a special filter: "Global: Composite Filter". Be sure to expose it. You can define groups in this filter's settings. For instance:
m2f|Boys loving girls
f2m|Girls loving boys
These groups are then available when adding other filters.
You will create ALL filters the same way as usual: a whole list of conditions under the "Filter criteria" header in a View. You can add every condition to one particular group (or to none, which means it's always active).