我目前正在为网站开发一小段功能。基本上我想在页面上显示端口地图,并允许用户在其下方输入地址以查找路线。一旦他们点击获取方向链接,就会打开一个精美的框,内容为包含Google的directionsPanel的div。
以下是我遇到的问题。 - 在链接点击时调用calcRoute()函数。因此div以前没有被填充过。结果?首次点击时,fancybox会生成空白。在第二个它生成就像它应该的那样。我想出的一个解决方案是手动设置div的大小。然而,这会产生我宁愿避免的滚动和样式问题。
这是我的代码(请注意,这是我创建的一个小页面,用于在移植到我们的实际站点之前测试我的代码):
<script type="text/javascript">
var map;
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
var manhattanPort = new google.maps.LatLng(40.767899, -73.995825);
var myHouse = new google.maps.LatLng(40.419866, -74.152263);
var geoCoder;
function initialize() {
geoCoder = new google.maps.Geocoder();
directionsDisplay = new google.maps.DirectionsRenderer();
var mapOptions = {
center: manhattanPort,
zoom:14,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById("directionsPanel"));
}
function calcRoute(){
var address = document.getElementById("address").value;
var end = manhattanPort;
var request = {
origin: address,
destination: end,
travelMode: google.maps.TravelMode.DRIVING
};
geoCoder.geocode( {'address':address}, function(results,status){
if(status == google.maps.GeocoderStatus.OK){
map.setCenter(results[0].geometry.location);
} else{
alert("Geocode was not succesful for the following reason: " + status);
}
});
directionsService.route(request, function(result, status){
if( status == google.maps.DirectionsStatus.OK){
directionsDisplay.setDirections(result);
}
});
}
function doClear(theText){
if (theText.value == theText.defaultValue){
theText.value = ""
}
}
</script>
</head>
<body onload="initialize()">
<table align="right">
<tr>
<td align="right" width="330" height="380">
<div id="map_canvas" style="width:100%; height:100%"></div>
</td>
</t
</table>
<table align="center">
<tr>
<td align="center">
<div>
<input name="start_address" id="address" type="text" value="Enter An Address To Get Directions" onFocus="doClear(this)" size="100"/>
<!-- <input type="button" value="Get Directions" onClick="calcRoute();"/> -->
<a class="fancybox" href="#directionsPanel" onClick="calcRoute();">Get Directions</a>
</div>
</td>
</tr>
<tr>
<td align="center">
<div id="directionsPanel"></div>
</td>
</tr>
</table>
</body>
</html>
现在显然我错过了fancybox本身的脚本。如果提供这些会有所帮助,请告诉我。
感谢您的帮助!
答案 0 :(得分:0)
在$.fancybox.update()
directionsService.route()