public ActionResult <List <PointFeature> > GetPointFeatures(decimal latitude, decimal longitude)
 {
     return(PointFeature.GetFeaturesByPoint(new Point(latitude, longitude), _config.GIS));
 }