package incheon.tmp.crud.web;

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/demo/map")
public class DemoMapController {

    @GetMapping("/edisplay.do")
    public String mapDisplay(ModelMap model) throws Exception {
        return "demo/map/EgovMapDisplay";
    }
    
    @GetMapping("/display.do")
    public String mapDisplay2(ModelMap model) throws Exception {
        return "demo/map/display";
    }
    
}
