我在下面有这段代码来生成谷歌地图,但地图没有以标记为中心。我做了一些研究,但无法弄清楚。
我使用的 JavaScript 代码:
if (status == google.maps.GeocoderStatus.OK) {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
$('#map_canvas').gmap('addMarker', { position: latitude + ',' + longitude, center: latitude + ',' + longitude, zoom: 10, draggable:false });
}