作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用此代码通过谷歌地图 API 生成谷歌地图。这是工作示例 jsfiddle
js代码
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
function initialize() {
var myloc = new google.maps.LatLng(35.433820, -97.135620);
var mapOptions = {
zoom: 17,
topCenter: myloc,
scrollwheel: false
};
var map = new google.maps.Map(document.getElementById('map'),mapOptions);
var marker = new google.maps.Marker({
position: map.getCenter(),
map: map,
animation: google.maps.Animation.BOUNCE
});
var contentString = '<div id="content" style="dir:rtl; text-align:right;">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading"><h1>title here</h1>'+
'<div id="bodyContent">'+
'<p>description here</p>'+
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString,
maxWidth: 250
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
html代码
<div id="map"></div>
map iframe 存在,但 map 是空的,没有标记,没有道路,只有 iframe
最佳答案
map 需要center
选项(您已经设置了topCenter
选项)。此外,您应该加载 API 的发布版本,当前的实验版本有很多错误。
关于javascript - 谷歌地图 API 无法加载 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33235650/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!