public async Task <IActionResult> NearbyIncidentsWithTag(double latitude, double longitude, uint radius, string tag)
 => Ok(await _incidentAppService.GetIncidentsAroundLocationWithTag(latitude, longitude, radius, tag));