以下是获取方向详细信息的代码。
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps API v3 Directions Example</title>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false"></script>
</head>
<body style="font-family: Arial; font-size: 12px;">
<div style="width: 600px;">
<div id="map" style="width: 280px; height: 400px; float: left;"></div>
<div id="panel" style="width: 300px; float: right;"></div>
</div>
<script type="text/javascript">
var directionsService = new google.maps.DirectionsService();
var directionsDisplay = new google.maps.DirectionsRenderer();
var map = new google.maps.Map(document.getElementById('map'), {
zoom:7,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById('panel'));
var request = {
origin: 'Chicago',
destination: 'New York',
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
</script>
</body>
</html>
您可以在浏览器中运行此代码。
现在我想用希腊语,德语,俄语等其他语言翻译那些方向信息。方向API中是否有任何选项可用于提供语言代码,并基于它提供响应..我知道谷歌翻译是可用,但我不知道如何使用它。
请帮助!!
答案 0 :(得分:2)
如果您在展示地图之前已经知道所需的语言,则可以load specific language maps:
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?sensor=false&language=ja">
答案 1 :(得分:1)
查看本地化文档:https://developers.google.com/maps/documentation/javascript/basics#Localization
但基本上,您必须使用GET HTTP请求指定语言:
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&language=ja">
以下是支持语言的电子表格:https://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1
如果您在运行时不知道用户的语言,则可以在提示用户输入语言后,使用jQuery函数$.getScript
使用正确的语言请求脚本。