有没有办法在地图选项字段中加载语言?
像这样的东西:
var mapOptions = {
center : new google.maps.LatLng(43.97918, 53.716647),
zoom : 10,
mapTypeId : google.maps.MapTypeId.ROADMAP,
language : 'fr'
};
有没有办法在地图选项字段中加载语言?
像这样的东西:
var mapOptions = {
center : new google.maps.LatLng(43.97918, 53.716647),
zoom : 10,
mapTypeId : google.maps.MapTypeId.ROADMAP,
language : 'fr'
};
找到了!
使用谷歌脚本https://www.google.com/jsapi
google.load('maps', '3.x', {
'other_params' :
'sensor=true&libraries=geometry&language=' + langCode,
'callback' : mapsLoadeds
});
mapsLoaded 执行用于创建地图的通用代码。
您可以language
在 google maps 的 url 中使用该参数:
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&language=ja">
</script>