Exemplo n.º 1
0
 public function generateAction($address, $info_bulle = '', $width = '100%', $height = '100%')
 {
     $geocoder = new \Geocoder\Geocoder();
     $adapter = new \Geocoder\HttpAdapter\CurlHttpAdapter();
     $chain = new \Geocoder\Provider\ChainProvider(array(new \Geocoder\Provider\FreeGeoIpProvider($adapter), new \Geocoder\Provider\HostIpProvider($adapter), new \Geocoder\Provider\GoogleMapsProvider($adapter, 'fr_FR', 'France', true), new \Geocoder\Provider\BingMapsProvider($adapter, 'AIzaSyBZ3sNuoMPrXGCNbhnEbGmfzGxOohhEX4E')));
     $geocoder->registerProvider($chain);
     $address = urldecode($address);
     $info_bulle = urldecode($info_bulle);
     // Récupération des coordonnées du programme
     try {
         $coordonnees = $geocoder->geocode($address);
     } catch (ChainNoResultException $e) {
         try {
             $coordonnees = $geocoder->geocode('France');
         } catch (ChainNoResultException $e) {
             return false;
         }
     }
     $info_content = '<div style="min-width:150px;text-align:center;">' . $info_bulle . '</div>';
     $info_window = new InfoWindow();
     $info_window->setAutoOpen(true);
     $info_window->setOpen(true);
     $info_window->setContent($info_content);
     $marker = new Marker();
     $marker->setPosition($coordonnees->getLatitude(), $coordonnees->getLongitude(), true);
     $marker->setAnimation('drop');
     $marker->setOption('clickable', true);
     $marker->setOption('flat', true);
     if ($info_bulle) {
         $marker->setInfoWindow($info_window);
     }
     // Création de la map
     $map = new Map();
     $map->setPrefixJavascriptVariable('map_');
     $map->setHtmlContainerId('map_canvas');
     $map->setAsync(true);
     $map->setAutoZoom(false);
     $map->setCenter($coordonnees->getLatitude(), $coordonnees->getLongitude(), true);
     $map->setMapOption('zoom', 12);
     $map->setMapOption('mapTypeId', MapTypeId::ROADMAP);
     $map->setMapOption('disableDefaultUI', false);
     $map->setMapOption('disableDoubleClickZoom', false);
     $map->setStylesheetOption('width', $width);
     $map->setStylesheetOption('height', $height);
     $map->setLanguage('fr');
     $map->addMarker($marker);
     return $map;
 }
 /** @var Ivory\GoogleMapBundle\Model\Map */
 public function generateGoogleMapAction($address, $city)
 {
     $locationInfo = [$address, $city];
     $map = $this->get('ivory_google_map.map');
     $curl = new \Ivory\HttpAdapter\CurlHttpAdapter();
     $geocoder = new \Geocoder\Provider\GoogleMaps($curl);
     $json = file_get_contents('http://maps.googleapis.com/maps/api/geocode/json?address=' . urlencode($locationInfo[0]) . '+' . urlencode($locationInfo[1]));
     $obj = json_decode($json);
     if (count($obj->results) === 0) {
         return $this->render('ConnectHollandPiccoloContentBundle:Block:googlemap.html.twig', array('map' => $map));
     }
     $location = $geocoder->geocode($locationInfo[0] . ' ' . $locationInfo[1])->first();
     $latitude = $location->getLatitude();
     $longitude = $location->getLongitude();
     $map->setCenter($latitude, $longitude, true);
     $map->setMapOption('zoom', 12);
     $marker = new Marker();
     $marker->setPosition($latitude, $longitude, true);
     $marker->setOption('clickable', true);
     $map->addMarker($marker);
     $infoWindow = new InfoWindow();
     $infoWindow->setContent('<p>' . $locationInfo[0] . '<br/>' . $locationInfo[1] . '</p>');
     $infoWindow->setAutoClose(true);
     $marker->setInfoWindow($infoWindow);
     return $this->render('ConnectHollandPiccoloContentBundle:Block:googlemap.html.twig', array('map' => $map));
 }
 /**
  * create new marker
  *
  * @var float $latitude
  * @var float $longitude
  * @var boolean $noWrap
  * @var array $options
  *
  * @return Marker
  */
 public function createMarker($latitude, $longitude, $noWrap, $options)
 {
     $marker = new Marker();
     $marker->setPosition($latitude, $longitude, $noWrap);
     foreach ($options as $key => $value) {
         $marker->setOption($key, $value);
     }
     return $marker;
 }
Exemplo n.º 4
0
 /**
  * Render map with marker
  *
  * @param Coordinate $point
  * @param string     $info
  * @param bool       $async
  *
  * @return mixed
  * @throws \Ivory\GoogleMap\Exception\AssetException
  * @throws \Ivory\GoogleMap\Exception\MapException
  * @throws \Ivory\GoogleMap\Exception\OverlayException
  */
 public function renderMapWithMarker(Coordinate $point, string $info = '', bool $async = true) : array
 {
     $marker = new Marker();
     $infoWindow = new InfoWindow();
     $marker->setPrefixJavascriptVariable('marker_');
     $marker->setPosition($point);
     $marker->setAnimation(Animation::DROP);
     $marker->setOption('clickable', true);
     $marker->setOption('flat', true);
     if ($info) {
         $infoWindow->setPrefixJavascriptVariable('info_window_');
         $infoWindow->setContent("<p>{$info}</p>");
         $infoWindow->setOpen(false);
         $infoWindow->setAutoOpen(true);
         $marker->setInfoWindow($infoWindow);
     }
     $map = $this->createEmptyMap($point, $async);
     $map->setMapOption('zoom', 13);
     $map->addMarker($marker);
     return $this->renderMap($map);
 }
Exemplo n.º 5
0
 /**
  * Render a Google Map in an iframe. If $identifier is specified then a small map will be output with a single
  * marker. Otherwise a large map will be output with a marker for each venue.
  *
  * @param null|string $identifier
  *
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function mapAction($identifier = null)
 {
     $repo = $this->getDoctrine()->getManager()->getRepository('ActsCamdramBundle:Venue');
     if ($identifier) {
         $venues = array($repo->findOneBySlug($identifier));
     } else {
         $venues = $repo->findAllOrderedByName();
     }
     $map = $this->get('ivory_google_map.map');
     $map->setPrefixJavascriptVariable('map_');
     $map->setHtmlContainerId('map_canvas');
     $map->setStylesheetOptions(array('width' => '100%', 'height' => '100%'));
     $one_venue = count($venues) == 1;
     if ($one_venue) {
         $map->setMapOption('zoom', 16);
         $map->setCenter($venues[0]->getLatitude(), $venues[0]->getLongitude(), true);
     } else {
         $map->setMapOption('zoom', 14);
         $map->setCenter(52.20531, 0.12179, true);
     }
     $letter = ord('A');
     $info_boxes = array();
     foreach ($venues as $venue) {
         if ($venue->getLatitude() && $venue->getLongitude()) {
             $content = $this->render('ActsCamdramBundle:Venue:infobox.html.twig', array('venue' => $venue, 'one_venue' => $one_venue))->getContent();
             $infoWindow = new InfoWindow();
             $infoWindow->setPrefixJavascriptVariable('info_window_');
             $infoWindow->setPosition($venue->getLatitude(), $venue->getLongitude(), true);
             $infoWindow->setContent($content);
             $infoWindow->setAutoOpen(true);
             $infoWindow->setOpenEvent(MouseEvent::CLICK);
             $infoWindow->setAutoClose(true);
             $infoWindow->setOption('zIndex', 10);
             $map->addInfoWindow($infoWindow);
             $marker = new Marker();
             $marker->setPrefixJavascriptVariable('marker_');
             $marker->setPosition($venue->getLatitude(), $venue->getLongitude(), true);
             if ($one_venue) {
                 $marker->setIcon($this->getMarkerUrl(''));
             } else {
                 $marker->setIcon($this->getMarkerUrl(chr($letter)));
             }
             $marker->setInfoWindow($infoWindow);
             $marker->setOption('clickable', true);
             $map->addMarker($marker);
             $info_boxes[] = array('image' => $this->getMarkerUrl(chr($letter)), 'box_id' => $infoWindow->getJavascriptVariable(), 'marker_id' => $marker->getJavascriptVariable(), 'map_id' => $map->getJavascriptVariable(), 'slug' => $venue->getSlug());
             $letter++;
             if ($letter == ord('Z') + 1) {
                 $letter = ord('A');
             }
         }
     }
     return $this->render('ActsCamdramBundle:Venue:map.html.twig', array('map' => $map, 'info_boxes' => $info_boxes));
 }