function initialize() {
var latlng = new google.maps.LatLng(35.004987, 135.762429);
var center = new google.maps.LatLng(35.004987, 135.762429);
var opts = {
zoom: 15,
center: center,
mapTypeControl: false,
mapTypeId: google.maps.MapTypeId.ROADMAP,
};
var map = new google.maps.Map(document.getElementById("map_canvas"), opts);
var image = 'https://daniels.jp/img/marker.png';
var marker = new google.maps.Marker({
position: latlng,
map: map,
icon: image,
title: '桃屋'
});
var style = [{"featureType":"landscape","stylers":[{"saturation":-100},{"lightness":60}]},{"featureType":"road.local","stylers":[{"saturation":-100},{"lightness":40},{"visibility":"on"}]},{"featureType":"transit","stylers":[{"saturation":-100},{"visibility":"simplified"}]},{"featureType":"administrative.province","stylers":[{"visibility":"off"}]},{"featureType":"water","stylers":[{"visibility":"on"},{"lightness":30}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#ef8c25"},{"lightness":40}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"visibility":"off"}]},{"featureType":"poi.park","elementType":"geometry.fill","stylers":[{"color":"#b6c54c"},{"lightness":40},{"saturation":-40}]},{}];
var mapType = new google.maps.StyledMapType(style);
map.mapTypes.set('simple', mapType);
map.setMapTypeId('simple');
}