function showMap() { if(!GBrowserIsCompatible()) { return; } var address = '神奈川県 小田原市本町3-15-6'; address = '神奈川県 小田原市'; var geocoder = new GClientGeocoder(); geocoder.getLatLng( address, function(point) { if (!point) { return; } var map = new GMap2(document.getElementById("googlemap")); map.setCenter(point, 16); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); } ); } function showStaticMap() { if(!GBrowserIsCompatible()) { return; } var address = '神奈川県 小田原市本町3-15-6'; address = '神奈川県 小田原市'; var geocoder = new GClientGeocoder(); geocoder.getLatLng( address, function(point) { if (!point) { return; } var url = "https://maps.googleapis.com/maps/api/staticmap?center="+point.toUrlValue()+"&zoom=16&size=130x130&key=AIzaSyB0vZjDy0o1PR9JM42Yo8YBMxaroZBxStI&sensor=false"; $("#googlestaticmap").attr('src',url); } ); }