idがgoogle-mapsの要素にマップを適用する。
$.event.add( window, 'load', function() {
$( '#google-maps' ).each( function () {
mapOptions = {
zoom: 6,
center: new google.maps.LatLng( 38.682, 139.333 )
};
var map = new google.maps.Map( $(this)[0], mapOptions );
} );
} );
loadイベントにて、idがgoogle-mapsの要素にマップを適用する。google.maps.Mapの第1パラメータはマップを適用させるDOMエレメントを指定するが、上記の通り$(this)[0]
でいい。