function initialize() {
  var latlng = new google.maps.LatLng(35.730055, 139.762979);
  var myOptions = {
    zoom: 17,/*拡大比率*/
    center: latlng,/*表示枠内の中心点*/ 
    mapTypeControlOptions: { mapTypeIds: ['sample', google.maps.MapTypeId.ROADMAP] }/*表示タイプの指定*/
  };
  var map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
 
  /*アイコン設定▼*/
  var icon = new google.maps.MarkerImage('images/map_pin.png',
    new google.maps.Size(52,71),/*アイコンサイズ設定*/
    new google.maps.Point(0,0),/*アイコン位置設定*/
	new google.maps.Point(0, 57)/*アイコンの基点*/
    );
  var markerOptions = {
    position: latlng,
    map: map,
    icon: icon,
    title: 'いいの耳鼻咽喉科'
  };
  var marker = new google.maps.Marker(markerOptions);
　/*アイコン設定ここまで▲*/
 
  /*取得スタイルの貼り付け*/
  var styleOptions = [
  {
    "stylers": [
      { "hue": "#00ff19" },
      { "saturation": -48 }
    ]
  }
];
  var styledMapOptions = { name: 'いいの耳鼻咽喉科' }
  var sampleType = new google.maps.StyledMapType(styleOptions, styledMapOptions);
  map.mapTypes.set('sample', sampleType);
  map.setMapTypeId('sample');
}