function(evt) {
$(".blurInfo").hide();
var value = evt.target.id;
map.graphics.clear();
switch (value) {
case 'pointS':
//绑定事件
handle = map.on("click", mapClick);
break;
case 'directS':
$("#result").empty(); //清除上次的统计结果
$("#optionsRadios1").removeAttr("disabled");
$("#optionsRadios1").attr("checked", true);
$("#optionsRadios1")[0].checked = true;
$("#city_list").attr("disabled", "disabled");
$("#m_list").attr("disabled", "disabled");
$('#myModal').modal(); //加载模态窗
break;
case 'chart':
$('#mapping').modal();
break;
case 'heatmap':
$(".blurInfo").show();
$('#heatmap_btn').show();
$('#density_btn').hide();
$("#bodersetting").hide();
break;
case 'density':
$(".blurInfo").show();
$('#heatmap_btn').hide();
$('#density_btn').show();
$("#bodersetting").show();
break;
default:
navToolbar.deactivate();
}