Google地图定向服务未显示

时间:2016-05-20 16:35:26

标签: javascript google-maps

我有以下代码来显示从一个点到另一个点的方向。我已按照用户@ user2314737的帖子private void btnCalculate_Click (object sender, EventArgs e) { int FirstTextBoxNumber; int SecondTextBoxNumber; int answer; try { Convert.ToInt32(tbSecondNumber.Text); FirstTextBoxNumber = int.Parse("2"); SecondTextBoxNumber = int.Parse(tbSecondNumber.Text); answer = FirstTextBoxNumber * SecondTextBoxNumber; MessageBox.Show("Your total is £" + answer.ToString()); } catch (FormatException) { MessageBox.Show("Please enter a decimal value"); } } 提供的代码。

根据我的知识,我改变了一点代码。但是我的地图上没有显示方向;我做错了什么?

这是代码;

http://stackoverflow.com/questions/5959788/google-maps-api-v3-how-show-the-direction-from-a-point-a-to-point-b-blue-line

1 个答案:

答案 0 :(得分:1)

你有一个错误是directionsService而不是directiionsService

calculateAndDisplayRoute( directionsService, directionsDisplay, latlng, pointB );