
	var city_center_index= city_center_x+','+city_center_y;
	var mapOptions = new MMapOptions();
	mapOptions.zoomLevel = 15;
	mapOptions.center = new MLatLng(city_center_index);
	var mapObj = new MMap("mapObj", mapOptions);	
	var json = '{"serialid":"lsf","coordX":"'+city_center_x+'","coordY":"'+city_center_y+'","titles":"'+title+'","contents":"","notStyleContent":"","imageArray":[],"imageContentArray":[],"icoUrl":"http://api.mapabc.com/fmp/v1.0/components/point/DynamicPoint/handshake.swf","gType":"pp_mc"}';
	mapObj.importMapData(json);
	setTimeout(openTip,1000); 
	function openTip() {
		mapObj.openGeometryTipById("lsf","pp_mc",true);
	}
