私はGoogleマップAPIに従っていて、次のコードを追加していますが、マーカーを表示していません
function initialize() {
        var myLatlng = new google.maps.LatLng(27.7000, 85.3333);
        var map_canvas = document.getElementById('map_canvas');
        var map_options = {
          center: new google.maps.LatLng(27.7000, 85.3333),
          zoom: 12,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        }
        // To add the marker to the map, use the 'map' property
        var marker = new google.maps.Marker({
            position: myLatlng,
            map: map,
            title:"Hello World!"
        });
        // To add the marker to the map, call setMap();
        marker.setMap(map);
        var map = new google.maps.Map(map_canvas, map_options)
      }
      google.maps.event.addDomListener(window, 'load', initialize);