gpt4 book ai didi

html - 在新的 Google Maps Engine 上禁用 Zoom

转载 作者:太空狗 更新时间:2023-10-29 16:07:25 26 4
gpt4 key购买 nike

我正在尝试禁用此页面的滚动/放大和缩小功能:

http://s1magazine.co.uk/NSA/pages/services/

每次我滚动经过它时它都会放大,我该如何禁用它?

<h2>NSA is a national competition happening throughout England.</h2>
<h2><!-- Responsive iFrame -->
<!-- Responsive iFrame --></h2>
<div class="Flexible-container"><iframe src="http://mapsengine.google.com/map/u/0/embed? mid=zyaBPLJJ7er8.kdbvNz_CrEYk" height="350" width="425" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>

最佳答案

自定义谷歌地图的更好方法是直接使用谷歌地图 API。针对具体情况,可以在 map 选项中将scrollwheel设置为false,关闭滚动/缩放

<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: false
};
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}

google.maps.event.addDomListener(window, 'load', initialize);

</script>


<div id="map-canvas"></div>

关于html - 在新的 Google Maps Engine 上禁用 Zoom,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18428919/

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