UI Kit Place Details

Click a marker on the map to see its place details in a Place Details Element. Read the documentation .

TypeScript

 // Use querySelector to select elements for interaction. 
 const 
  
 map 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
 'gmp-map' 
 ) 
  
 as 
  
 google 
 . 
 maps 
 . 
 MapElement 
 ; 
 const 
  
 placeDetails 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
 'gmp-place-details' 
 ) 
  
 as 
  
 any 
 ; 
 const 
  
 placeDetailsRequest 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
  
 'gmp-place-details-place-request' 
 ) 
  
 as 
  
 any 
 ; 
 const 
  
 marker 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
  
 'gmp-advanced-marker' 
 ) 
  
 as 
  
 google 
 . 
 maps 
 . 
 marker 
 . 
 AdvancedMarkerElement 
 ; 
 async 
  
 function 
  
 initMap 
 () 
 : 
  
 Promise<void> 
  
 { 
  
 // Request needed libraries. 
  
 await 
  
 Promise 
 . 
 all 
 ([ 
  
 google 
 . 
 maps 
 . 
 importLibrary 
 ( 
 'maps' 
 ), 
  
 google 
 . 
 maps 
 . 
 importLibrary 
 ( 
 'marker' 
 ), 
  
 google 
 . 
 maps 
 . 
 importLibrary 
 ( 
 'places' 
 ), 
  
 ]); 
  
 // Hide the map type control. 
  
 map 
 . 
 innerMap 
 . 
 setOptions 
 ({ 
  
 mapTypeControl 
 : 
  
 false 
  
 }); 
  
 // Function to update map and marker based on place details 
  
 const 
  
 updateMapAndMarker 
  
 = 
  
 () 
  
 = 
>  
 { 
  
 if 
  
 ( 
 placeDetails 
 . 
 place 
 && 
 placeDetails 
 . 
 place 
 . 
 location 
 ) 
  
 { 
  
 map 
 . 
 innerMap 
 . 
 panTo 
 ( 
 placeDetails 
 . 
 place 
 . 
 location 
 ); 
  
 map 
 . 
 innerMap 
 . 
 setZoom 
 ( 
 16 
 ); 
  
 // Set zoom after panning if needed 
  
 marker 
 . 
 position 
  
 = 
  
 placeDetails 
 . 
 place 
 . 
 location 
 ; 
  
 marker 
 . 
 collisionBehavior 
  
 = 
  
 google 
 . 
 maps 
 . 
 CollisionBehavior 
 . 
 REQUIRED_AND_HIDES_OPTIONAL 
 ; 
  
 marker 
 . 
 style 
 . 
 display 
  
 = 
  
 'block' 
 ; 
  
 } 
  
 }; 
  
 // Set up map once widget is loaded. 
  
 placeDetails 
 . 
 addEventListener 
 ( 
 'gmp-load' 
 , 
  
 ( 
 event 
 ) 
  
 = 
>  
 { 
  
 updateMapAndMarker 
 (); 
  
 }); 
  
 // Add an event listener to handle clicks. 
  
 map 
 . 
 innerMap 
 . 
 addListener 
 ( 
 'click' 
 , 
  
 async 
  
 ( 
 event 
 ) 
  
 = 
>  
 { 
  
 marker 
 . 
 position 
  
 = 
  
 null 
 ; 
  
 event 
 . 
 stop 
 (); 
  
 if 
  
 ( 
 event 
 . 
 placeId 
 ) 
  
 { 
  
 // Fire when the user clicks a POI. 
  
 placeDetailsRequest 
 . 
 place 
  
 = 
  
 event 
 . 
 placeId 
 ; 
  
 updateMapAndMarker 
 (); 
  
 } 
  
 else 
  
 { 
  
 // Fire when the user clicks the map (not on a POI). 
  
 console 
 . 
 log 
 ( 
 'No place was selected.' 
 ); 
  
 marker 
 . 
 style 
 . 
 display 
  
 = 
  
 'none' 
 ; 
  
 } 
  
 }); 
 } 
 initMap 
 (); 
  

JavaScript

 // Use querySelector to select elements for interaction. 
 const 
  
 map 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
 'gmp-map' 
 ); 
 const 
  
 placeDetails 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
 'gmp-place-details' 
 ); 
 const 
  
 placeDetailsRequest 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
 'gmp-place-details-place-request' 
 ); 
 const 
  
 marker 
  
 = 
  
 document 
 . 
 querySelector 
 ( 
 'gmp-advanced-marker' 
 ); 
 async 
  
 function 
  
 initMap 
 () 
  
 { 
  
 // Request needed libraries. 
  
 await 
  
 Promise 
 . 
 all 
 ([ 
  
 google 
 . 
 maps 
 . 
 importLibrary 
 ( 
 'maps' 
 ), 
  
 google 
 . 
 maps 
 . 
 importLibrary 
 ( 
 'marker' 
 ), 
  
 google 
 . 
 maps 
 . 
 importLibrary 
 ( 
 'places' 
 ), 
  
 ]); 
  
 // Hide the map type control. 
  
 map 
 . 
 innerMap 
 . 
 setOptions 
 ({ 
  
 mapTypeControl 
 : 
  
 false 
  
 }); 
  
 // Function to update map and marker based on place details 
  
 const 
  
 updateMapAndMarker 
  
 = 
  
 () 
  
 = 
>  
 { 
  
 if 
  
 ( 
 placeDetails 
 . 
 place 
 && 
 placeDetails 
 . 
 place 
 . 
 location 
 ) 
  
 { 
  
 map 
 . 
 innerMap 
 . 
 panTo 
 ( 
 placeDetails 
 . 
 place 
 . 
 location 
 ); 
  
 map 
 . 
 innerMap 
 . 
 setZoom 
 ( 
 16 
 ); 
  
 // Set zoom after panning if needed 
  
 marker 
 . 
 position 
  
 = 
  
 placeDetails 
 . 
 place 
 . 
 location 
 ; 
  
 marker 
 . 
 collisionBehavior 
  
 = 
  
 google 
 . 
 maps 
 . 
 CollisionBehavior 
 . 
 REQUIRED_AND_HIDES_OPTIONAL 
 ; 
  
 marker 
 . 
 style 
 . 
 display 
  
 = 
  
 'block' 
 ; 
  
 } 
  
 }; 
  
 // Set up map once widget is loaded. 
  
 placeDetails 
 . 
 addEventListener 
 ( 
 'gmp-load' 
 , 
  
 ( 
 event 
 ) 
  
 = 
>  
 { 
  
 updateMapAndMarker 
 (); 
  
 }); 
  
 // Add an event listener to handle clicks. 
  
 map 
 . 
 innerMap 
 . 
 addListener 
 ( 
 'click' 
 , 
  
 async 
  
 ( 
 event 
 ) 
  
 = 
>  
 { 
  
 marker 
 . 
 position 
  
 = 
  
 null 
 ; 
  
 event 
 . 
 stop 
 (); 
  
 if 
  
 ( 
 event 
 . 
 placeId 
 ) 
  
 { 
  
 // Fire when the user clicks a POI. 
  
 placeDetailsRequest 
 . 
 place 
  
 = 
  
 event 
 . 
 placeId 
 ; 
  
 updateMapAndMarker 
 (); 
  
 } 
  
 else 
  
 { 
  
 // Fire when the user clicks the map (not on a POI). 
  
 console 
 . 
 log 
 ( 
 'No place was selected.' 
 ); 
  
 marker 
 . 
 style 
 . 
 display 
  
 = 
  
 'none' 
 ; 
  
 } 
  
 }); 
 } 
 initMap 
 (); 
  

CSS

 /* 
 * Optional: Makes the sample page fill the window. 
 */ 
 html 
 , 
 body 
  
 { 
  
 height 
 : 
  
 100 
 % 
 ; 
  
 margin 
 : 
  
 0 
 ; 
  
 padding 
 : 
  
 0 
 ; 
 } 
 . 
 container 
  
 { 
  
 display 
 : 
  
 flex 
 ; 
  
 height 
 : 
  
 100 
 vh 
 ; 
  
 width 
 : 
  
 100 
 % 
 ; 
 } 
 gmp-map 
  
 { 
  
 flex-grow 
 : 
  
 1 
 ; 
 } 
 . 
 ui-panel 
  
 { 
  
 width 
 : 
  
 400 
 px 
 ; 
  
 margin-left 
 : 
  
 20 
 px 
 ; 
  
 margin-top 
 : 
  
 10 
 px 
 ; 
 } 
 gmp-place-details 
  
 { 
  
 width 
 : 
  
 100 
 % 
 ; 
  
 margin 
 : 
  
 0 
 ; 
  
 border 
 : 
  
 none 
 ; 
 } 
  

HTML

<!doctype html>
<html>
    <head>
        <title>Place Details with Google Maps</title>
        <meta charset="utf-8" />
        <link rel="stylesheet" type="text/css" href="style.css" />
        <script type="module" src="./index.js" defer></script>
        <!-- prettier-ignore -->
        <script>
      (g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
              ({key: "AIzaSyA6myHzS10YXdcazAFalmXvDkrYCp5cLc8", v: "weekly" });
    </script>
    </head>
    <body>
        <div class="container">
            <!-- map-id is required to use advanced markers. See https://developers.google.com/maps/documentation/javascript/map-ids/mapid-over. -->
            <gmp-map zoom="17" map-id="DEMO_MAP_ID">
                <gmp-advanced-marker></gmp-advanced-marker>
            </gmp-map>
            <div class="ui-panel">
                <gmp-place-details>
                    <gmp-place-details-place-request
                        place="ChIJC8HakaIRkFQRiOgkgdHmqkk"></gmp-place-details-place-request>
                    <gmp-place-content-config>
                        <gmp-place-address></gmp-place-address>
                        <gmp-place-rating></gmp-place-rating>
                        <gmp-place-type></gmp-place-type>
                        <gmp-place-price></gmp-place-price>
                        <gmp-place-accessible-entrance-icon></gmp-place-accessible-entrance-icon>
                        <gmp-place-opening-hours></gmp-place-opening-hours>
                        <gmp-place-website></gmp-place-website>
                        <gmp-place-phone-number></gmp-place-phone-number>
                        <gmp-place-summary></gmp-place-summary>
                        <gmp-place-type-specific-highlights></gmp-place-type-specific-highlights>
                        <gmp-place-review-summary></gmp-place-review-summary>
                        <gmp-place-reviews></gmp-place-reviews>
                        <gmp-place-feature-list></gmp-place-feature-list>
                    </gmp-place-content-config>
                </gmp-place-details>
            </div>
        </div>
    </body>
</html>  

Try Sample

Clone Sample

Git and Node.js are required to run this sample locally. Follow these instructions to install Node.js and NPM. The following commands clone, install dependencies and start the sample application.

  
  git 
  
 clone 
  
 https 
 : 
 //github.com/googlemaps-samples/js-api-samples.git 
 
  
  cd 
  
 samples 
 / 
 ui 
 - 
 kit 
 - 
 place 
 - 
 details 
 
  
  npm 
  
 i 
 
  
  npm 
  
 start 
 
Design a Mobile Site
View Site in Mobile | Classic
Share by: