我必须在webview中使用google maps javascript api。问题是,在拖动地图时,不会加载丢失的图块。在我桌面电脑上的浏览器中,我无法获得相同的行为,但在拖动地图时加载图块。在图片中我拿着地图,直到我松开手指才发生任何事情。
我在gmaps bugtracker中发现了一个问题(不完全适合我的问题,但有点接近)并尝试了所有提到的解决方案: https://code.google.com/p/gmaps-api-issues/issues/detail?id=1448
这是我到目前为止所尝试的:
// Setting the maps div container to a fixed size
#map-canvas {
height: 600px;
width: 600px;
}
// Emit resize trigger on mouse move
$(document).ready(function () {
$("#map-canvas").mousemove(function (event) {
setTimeout(function () {
google.maps.event.trigger(map,'resize');
map.setZoom(map.getZoom());
}, 100);
});
});
// loading Google Maps API after document has been loaded
function loadScript() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&' +
'callback=initialize';
document.body.appendChild(script);
}
window.onload = loadScript;
代码正常工作,mousemove事件被触发。我在我的nexus 10设备上使用android:minSdkVersion =“19”。
答案 0 :(得分:2)
试试这个......只有在调整地图大小时才会出现此问题。
google.maps.event.addDomListener( map, 'drag', function(e) {
google.maps.event.trigger(map,'resize');
map.setZoom(map.getZoom());
});
答案 1 :(得分:1)
你可以缓冲一个更大的地图,只显示视口中的一部分吗? EG将地图加载到600x600内的1200x1200 div中,溢出:隐藏?
答案 2 :(得分:1)
触摸事件与鼠标事件不同,您可以使用touch-start,touch-end等触摸事件绑定或尝试使用hammer.js
答案 3 :(得分:0)
尝试这样做有效
google.maps.event.addListenerOnce(map, 'tilesloaded', function () {
google.maps.event.addListenerOnce(map, 'tilesloaded', function () {
google.maps.event.trigger(map, 'resize');
});
});
答案 4 :(得分:0)
我有同样的问题,没有居中,只在地图画布上显示地图的一部分。
这一行解决了我的问题:
google.maps.event.trigger(map, 'resize');
如果不在鼠标悬停时触发它,请在map.initialize();
之后使用此行,然后执行 setCenter 和 setZoom 强>
map.setCenter(myLatlng);
map.setZoom(10);
答案 5 :(得分:-1)
您是否尝试过拖动?
google.maps.event.addDomListener( map, 'drag', function(e) {
//Code that runs consistantly everytime the user drags the map
//load map tiles if not loaded yet
});
我没有为Android版本编码的经验,但也许这可能是朝着正确方向迈出的一步?
答案 6 :(得分:-1)
//创建一个Div作为' map_canvas'
var htmldesign = '<table><tr><td>India</td></tr></table>';
var locationdetails = 'India';
var popdetail = 'India';
var zoomper = 5;
GetLocation(locationdetails, popdetail, zoomper);
function GetLocation(address, popdetail, zoomper) {
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': address }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var latitude = results[0].geometry.location.lat();
var longitude = results[0].geometry.location.lng();
initialize(latitude, longitude, popdetail, zoomper);
} else {
initialize(21.0000, 78.8718, 'India', zoomper);
}
});
};
function initialize(lat, lon, popdetail, zoom) {
var myLatlng = new google.maps.LatLng(lat, lon) // This is used to center the map to show our markers
var mapOptions;
mapOptions = {
center: myLatlng,
zoom: zoom,
mapTypeId: google.maps.MapTypeId.ROADMAP,
marker: true
};
var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
var marker = new google.maps.Marker({
animation: google.maps.Animation.BOUNCE,
position: myLatlng
});
if (popdetail != 'India') {
popdetail = '<div style="font-size:small;font-family:@Arial Unicode MS;border-radius: 6px;" class="phoneytext"> ' + popdetail + '</div>';
infoBubble = new InfoBubble({
map: map,
content: popdetail,
position: new google.maps.LatLng(lat, lon),
shadowStyle: 1,
padding: 10,
backgroundColor: '#E6E6E6',
borderRadius: 6,
arrowSize: 30,
borderWidth: 1,
borderColor: '#2c2c2c',
disableAutoPan: false,
hideCloseButton: true,
arrowPosition: 10,
backgroundClassName: 'phoney',
arrowStyle: 2
});
marker.setMap(map);
infoBubble.open(map, marker);
}
else {
marker.setMap(map);
}
}
</script>
答案 7 :(得分:-1)
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
var map_canvas = document.getElementById('map_canvas');
var map_options = {
center: new google.maps.LatLng(51.372658, 1.354386),
zoom:16,
mapTypeId: google.maps.MapTypeId.HYBRID
}
var map = new google.maps.Map(map_canvas, map_options)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<style>
#map_canvas {
width: 500px;
height:400px;
border:1px solid #888888;
margin-bottom:20px;
box-shadow: 2px 2px 2px #888888;
}
</style>
</head>
<body>
<div id="map_canvas"></div>
</body>
您需要在此处更改您所在位置的经度和纬度。你可以从谷歌地图得到这个。要改变的部分是“new google.maps.LatLng(51.372658,1.354386)”