我在我的网站上使用谷歌地图。它在所有浏览器中都可以正常工作,但我在移动设备上使用它时遇到问题:我无法滚动地图。我怀疑它是由eventListener“click”引起的,可能是这种情况吗?我将标记放在用户点击的位置 这是代码:
<script src="http://maps.google.com/maps/api/js?sensor=false&language=${Locale.getDefault()}" type="text/javascript"></script>
$(document).ready(function(){
createMap();
});
function createMap(){
geocoder = new google.maps.Geocoder();
infowindow = new google.maps.InfoWindow();
latlng = new google.maps.LatLng(55.783234,12.518363);
var myOptions = {
zoom: 7,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
marker = new google.maps.Marker();
google.maps.event.addListener(map, 'click', function(event) {
makeMarker(event.latLng, true);
});
}
答案 0 :(得分:1)
事实证明,在移动设备上使用Google地图不是一个好主意。