从谷歌地图中移除本地语言标签



如果你在 谷歌地图图片 标签文本是英语和其他一些语言(泰卢固语)。有没有办法只用英文显示标签文本,隐藏或删除其他语言的标签文本。?

谢谢

您可以设置此选项以删除本地语言

language=uk
https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&language=uk&region=EG&callback=initMap

然后它将仅显示英语。

是的,当然!

标签的语言设置非常简单。您可能只需要在下载谷歌地图 API 时添加参数语言。以下是英文请求的示例:

<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&language=en&region=EG&callback=initMap"></script>

这是带有英文标签的埃及语的完整代码:

// This example displays a map with the language set to Arabic and the
// regions set to Egypt. These settings are specified in the HTML script
// element when loading the Google Maps JavaScript API.
// Setting the language shows the map in the language of your choice.
// Setting the region biases the geocoding results to that region.
// In addition, the page's html element sets the text direction to
// right-to-left.
function initMap() {
var cairo = {lat: 30.064742, lng: 31.249509};
var map = new google.maps.Map(document.getElementById('map'), {
scaleControl: true,
center: cairo,
zoom: 10
});
var infowindow = new google.maps.InfoWindow;
infowindow.setContent('<b>القاهرة</b>');
var marker = new google.maps.Marker({map: map, position: cairo});
marker.addListener('click', function() {
infowindow.open(map, marker);
});
}
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?&language=en&region=EG&callback=initMap"></script>

如果你有什么问题,告诉我,

狮身人面像

最新更新