김서연

merge

......@@ -50,18 +50,6 @@ app.post('/',function(req,res,next){
app.get('/',function(req,res){
res.render('index');
// res.writeHead(200, {'Content-Type': 'text/html'});
// fs.readFile('./map/kakaomap.html', null, function(err,data){
// if(err){
// res.writeHead(404);
// res.write('error');
// }
// else{
// console.log('complete!');
// res.write(data);
// }
// res.end();
// });
})
app.listen(3000,function(){
......
......@@ -43,9 +43,7 @@
geocoder.addressSearch(tmpaddr, function(result, status) {
if (status === kakao.maps.services.Status.OK) {
var coords = new kakao.maps.LatLng(result[0].y, result[0].x);
// y += result[0].y;
// x += result[0].x;
// count += 1;
var marker = new kakao.maps.Marker({
position: coords,
clickable: true});
......