using WhatApi.Templates; namespace WhatApi.Endpoints; public class GetMapPageEndpoint : BaseEndpoint { [HttpGet("~/map")] public ActionResult GetMapPage() { return Content(TemplateFulfiller.WebMapPage(), "text/html"); } }