function initialize() { var marker_image = new google.maps.MarkerImage('assets/images/ico_marker@2x.png'); //マーカー画像の置き場所 marker_image.scaledSize = new google.maps.Size(26, 32);  //マーカー画像のサイズ var option = { zoom: 17, //拡大率の設定 scrollwheel: false, draggable:true, styles: [ { stylers: [ { "invert_lightness": false }, { "gamma": 1 }, { "saturation": -100 } ] } ], mapTypeControl: false, mapTypeId: google.maps.MapTypeId.ROADMAP }; var Centerlatlng = new google.maps.LatLng(13.750971,100.62474); //オフィスの経度緯度を入れる(http://www.geocoding.jp/で検索してみる) var Option = option; Option.center= Centerlatlng; var Map = new google.maps.Map(document.getElementById("access"), Option) //google mapを表示させる親要素のID名を入れる var Marker = new google.maps.Marker({ position: Centerlatlng, icon: marker_image, map: Map }); } initialize();