В настоящее время Google Styled Maps нельзя применять к типам карт, отличных от типа ROADMAP
по умолчанию.Это было подтверждено сотрудником Google в списке рассылки 31 мая 2010 года:
Однако, если вы просто хотите более зеленую местность с темной водой, вы все равно можете задать стиль по умолчанию ROADMAP
, чтобы он выглядел примерно так:
Пример исходного кода:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps Dark Water Style Demo</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 550px; height: 300px;"></div>
<script type="text/javascript">
var darkStyle = [
{
featureType: "landscape",
elementType: "all",
stylers: [
{ visibility: "on" },
{ hue: "#1aff00" },
{ lightness: -17 }
]
},{
featureType: "water",
elementType: "all",
stylers: [
{ hue: "#1900ff" },
{ invert_lightness: true },
{ lightness: -56 },
{ saturation: 31 },
{ visibility: "simplified" }
]
},{
featureType: "administrative",
elementType: "all",
stylers: [
{ gamma: 0.82 },
{ visibility: "on" },
{ lightness: -18 },
{ hue: "#00ff4d" },
{ saturation: 27 }
]
}
];
var map = new google.maps.Map(document.getElementById('map'), {
mapTypeControlOptions: {
mapTypeIds: [
'darkwater',
google.maps.MapTypeId.ROADMAP,
google.maps.MapTypeId.TERRAIN
]
},
center: new google.maps.LatLng(30, 0),
zoom: 1,
mapTypeId: 'darkwater'
});
map.mapTypes.set(
'darkwater', new google.maps.StyledMapType(darkStyle, {
name: 'Dark'
})
);
</script>
</body>
</html>