1
は私がやっているものHTMLページから複数の引数でjavascript関数を呼び出すと、いくつかのtrouvleました:Silverlightプロジェクトから複数の引数を使用してjavascript関数を呼び出すにはどうすればよいですか?
wbNavigator.Navigate(new Uri("http://localhost:56433/route.html" ,UriKind.Absolute));
object results= wbNavigator.InvokeScript("calculer", new string[] {"3.072526", "36.766942", "3.042526", "36.766942"});
をしかし呼び出し、何も私は何かが欠け.Amをhapeningんですか?私のjavascriptのコードです :
<script type="text/javascript">
var directionsService = new google.maps.DirectionsService();
var directionsDisplay = new google.maps.DirectionsRenderer();
var myOptions = {
zoom: 7,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
function calcluer(lon_A, lat_A, lon_B, lat_B) {
var map = new google.maps.Map(document.getElementById("map"), myOptions);
directionsDisplay.setMap(map);
var salle2 = new google.maps.LatLng(lat_A, lon_A);
var salle3 = new google.maps.LatLng(lat_B, lon_B);
var request = {
origin: salle2,
destination: salle3,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function (response, status) {
if (status == google.maps.DirectionsStatus.OK) {
// Display the distance:
document.getElementById('distance').innerHTML +=
response.routes[0].legs[0].distance.value + " meters";
// Display the duration:
document.getElementById('duration').innerHTML +=
response.routes[0].legs[0].duration.value + " seconds";
directionsDisplay.setDirections(response);
}
});
}
</script>
あなたの答えは!私はそれをやろうとした!それは常に同じ問題です。おそらくJavaScriptコードに問題があります。 –
@Mehdi:コメントはあまりにも多くのテキストとコメントに書式を設定しない特定のコードには適していません。あなたの質問の下に編集機能を使用し、あなたの質問に追加情報を置きます。 – AnthonyWJones
完了!編集完了アンソニー。 –