自定义谷歌地图添加地方卡

时间:2015-02-27 11:09:58

标签: google-maps google-maps-api-3 google-maps-markers google-places-api

我使用php创建了自定义谷歌地图。它显示标记,位置和信息窗口。

它没有任何问题。

我想在其中添加地方卡。检查下面的截图。如何在自定义地图上显示Place卡。 enter image description here

我尝试使用以下代码来显示自定义位置。

   <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
         <script>
         var saveWidget;

         function initialize() {

     var myLatlng = new google.maps.new google.maps.LatLng(-34.397, 150.644);
          var mapOptions = {
            zoom: 4,
            center: myLatlng
          };

        var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
        var contentString = '<div id="content">'+
              '<div id="siteNotice">'+
              '</div>'+
              '<h1 id="firstHeading" class="firstHeading">location</h1>'
              '</div>';

        var infowindow = new google.maps.InfoWindow({  content: contentString });
        var marker = new google.maps.Marker({
              position: myLatlng,
              map: map,
              title: 'Uluru (Ayers Rock)'
          });

        google.maps.event.addListener(marker, 'click', function() {   infowindow.open(map,marker); });  }

        google.maps.event.addDomListener(window, 'load', initialize);
        </script>

0 个答案:

没有答案