{GoogleMapsAPI: 'JavaScript API V3', Title: 'show streetview event', Level: 6.1}
京都駅八条西口まえの位置情報も判ったことですし、リファクタリングしましょう*1^^
動的なら兎も角、静的なら一先ずいらないよねGeocode
hello_maps.js
初期の位置情報を八条西口前にして、
var centerPos = new google.maps.LatLng(34.984006, 135.75825499999996);
geocode関連を全部コメントアウト。
// //Geocode // var geocoder = new google.maps.Geocoder(); // var address = 'kyotoeki'; // geocoder.geocode( { // 'address': address // }, function(results, status) { // if (status == google.maps.GeocoderStatus.OK) { // map.setCenter(results[0].geometry.location); // map set latlng // var marker = new google.maps.Marker({ // map: map, // position: results[0].geometry.location // }); // panorama.setPosition(results[0].geometry.location); // streetview set latlng // } else { // alert("Geocode was not successful for the following reason: " + status); // } // });
*1:テストコード無いけどね