我正在使用FileMaker Web Viewer(使用FileMaker Pro v16)中的Google Maps API显示Google Map。在macOS High Sierra上,一切正常,但在另一台运行Sierra或El Capitan的Mac上,当您用鼠标单击缩放按钮(右下角的+和-按钮)时无响应。
如果您使用鼠标滑动来缩放,则效果很好。如果我将HTML从Web Viewer保存到.html文件并在Safari中打开,则可以正常工作,但是由于某些原因,在这些系统上的Web Viewer中,缩放按钮无法响应。我正在使用Maps API文档中的基本示例进行测试(我正在添加我的API密钥,但已从示例代码中删除):
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap"
async defer></script>
</body>
</html>
我在控制台中什么都没有得到,因此我很困惑为什么单击地图上的放大/缩小按钮时鼠标单击不起作用。