// Just add the selection point to the map data model as a MapMarker (represented
// as a pin).
private void handleSelection( final MapPoint selection ) {
map.getModel().removeAll();
map.getModel().add( new MapMarker( selection.getLat(), selection.getLon() ) );
currSelection = selection;
}