/**
  * action delete
  *
  * @param \TYPO3\EasyGooglemap\Domain\Model\Location $location
  * @return void
  */
 public function deleteAction(\TYPO3\EasyGooglemap\Domain\Model\Location $location)
 {
     $this->locationRepository->remove($location);
     $this->flashMessageContainer->add('Your Location was removed.');
     $this->redirect('list');
 }