世界奇術史マップ
世界の奇術史において重要な都市を示す研究マップ。
function initMap(){
let map=new google.maps.Map(document.getElementById("map"),{
zoom:2, center:{lat:30,lng:10}
});
let locations=[
["Paris - Robert-Houdin Theatre",48.8566,2.3522],
["London - Maskelyne & Cooke Theatre",51.5074,-0.1278],
["New York - Houdini",40.7128,-74.0060],
["Las Vegas - Modern Magic Shows",36.1699,-115.1398],
["Tokyo - Japanese Magic",35.6762,139.6503]
];
locations.forEach(function(loc){
let marker=new google.maps.Marker({
position:{lat:loc[1],lng:loc[2]}, map:map, title:loc[0]
});
});
}
