/**
  * action create
  *
  * @param \TYPO3\EasyGooglemap\Domain\Model\Location $newLocation
  * @return void
  */
 public function createAction(\TYPO3\EasyGooglemap\Domain\Model\Location $newLocation)
 {
     $this->locationRepository->add($newLocation);
     $this->flashMessageContainer->add('Your new Location was created.');
     $this->redirect('list');
 }