MapController.cs
Home
/
web-map /
Controllers /
MapController.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace web_map.Controllers
{
public class MapController : BaseController
{
public ActionResult Map()
{
return View();
}
}
}