gpt4 book ai didi

google-maps - 更改谷歌地图的颜色

转载 作者:行者123 更新时间:2023-12-03 23:07:41 26 4
gpt4 key购买 nike

关闭。这个问题需要更多 focused .它目前不接受答案。












想改进这个问题?更新问题,使其仅关注一个问题 editing this post .

3年前关闭。




Improve this question




是否可以使用新的 Google map javascript API 将 map 的颜色更改为类似 map under the light blue panel

最佳答案

样式化的 map 可能是您正在寻找的,

值得一提的是向导(注意在#9 中,它应该是 styles ,而不是 style )

https://mapstyle.withgoogle.com

这些是引用:

http://code.google.com/apis/maps/documentation/javascript/reference.html#StyledMapType

http://code.google.com/apis/maps/documentation/javascript/styling.html

静态 API 中有一个样式化 map 的示例
http://code.google.com/apis/maps/documentation/staticmaps/#StyledMaps

饱和度和亮度控制着外观。饱和度较低=颜色较少,亮度较高=更白

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body, #map_canvas { margin: 0; padding: 0; height: 100% }
</style>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var map;
var grayStyles = [
{
featureType: "all",
stylers: [
{ saturation: -90 },
{ lightness: 50 }
]
},
];
var mapOptions = {
center: new google.maps.LatLng(41.325663, 19.8029607),
zoom: 15,
styles: grayStyles,
mapTypeId: google.maps.MapTypeId.ROADMAP
};

function initialize() {
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
}

google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map_canvas"></div>
</body>
</html>

关于google-maps - 更改谷歌地图的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9660178/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com