作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
function load() {
if (GBrowserIsCompatible()) {
var map;
var location = new google.maps.LatLng(46.084989, 11.118851);
var stylez =
[
{
featureType: "all",
elementType: "all",
stylers: [
{ saturation: -98 }
]
}
];
var mapOptions = {
zoom: 11,
center: location,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'myScale']
}
};
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
var mapType = new google.maps.StyledMapType(stylez, { name: "Grayscale" });
map.mapTypes.set('myScale', mapType);
map.setMapTypeId('myScale')
}
}
$(document).ready(function(){
load();
});
</script>
<div id="map_canvas" style="width: 100%; height: 700px"></div>
但没有加载任何内容。我哪里错了?删除 GBrowserIsCompatible() 它可以工作,但无法识别位置。
最佳答案
map API V2 已弃用,请使用 V3。如果您删除 GBrowserIsCompatible() 它将起作用,并且 map 将以您想要的坐标为中心。
为了更好地突出显示您可以使用标记的位置
var marker = new google.maps.Marker({
position: location,
map: map,
title:"My location title"
});
关于javascript - 为什么谷歌地图没有加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6414093/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!