我在我的网站上有一个路由器,并将脚本的语言改为荷兰语,如下所示:
src="http://maps.google.com/maps/api/js?sensor=false;language=nl"地图的语言现在是荷兰语,但路由规划师的语言不是:
1. Head southeast on Aalbershof
20 m
2. Turn left to stay on Aalbershof
90 m
3. Turn right to stay on Aalbershof
38 m
4. At the roundabout, take the 1st exit onto Oosterlandenweg
1.4 km
5. Turn left onto Zwolseweg
etc.我如何改变路由规划者的语言?
发布于 2016-04-19 07:48:14
根据https://developers.google.com/maps/documentation/javascript/basics#Localization,您正确地使用了API。您可能需要用&而不是;来划分参数吗?
src="http://maps.google.com/maps/api/js?sensor=false&language=nl"https://stackoverflow.com/questions/36711508
复制相似问题