以下に、マップとマーカーを表示するコードを示します (Json から)。
$('#map_canvas').gmap().bind('init', function() {
$.getJSON( '../js/locate.php', function(data) {
$.each( data.markers, function(i, marker) {
var mapvalue=new google.maps.LatLng(marker.latitude, marker.longitude);
$('#map_canvas').gmap('addMarker', {
'tags': [''+marker.category+''],
'position': mapvalue,
'bounds': true,
'icon':'../images/'+marker.category+'.png',
'animation':google.maps.Animation.DROP
}).click(function() {
$('#map_canvas').gmap('openInfoWindow', { 'content': ''+marker.category+'<BR><div id="cust_content"></div>' }, this);
setTimeout("opencust(\'" +marker.id+"\');",100);
});
});
});
});
新しいアドセンス スクリプトをマップに含める方法: https://developers.google.com/maps/documentation/javascript/advertising#AdvertisingAdUnit
ご協力いただきありがとうございます!