function getSuperMapCenterPoint(str) { var arr = str.split(","); var r = []; r.push(parseFloat(arr[0])); r.push(parseFloat(arr[1])); return r; }