没有为此记录的 API,但是有一种不受支持的方法可以做到这一点。Azure Maps 中的基本地图使用 Mapbox Vector Tile 样式架构,这是一个开放标准。可以访问基础地图图层并隐藏您想要的任何标签图层。这是一个隐藏基本地图中所有标签的代码示例:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/css/atlas.min.css?api-version=1" type="text/css" />
<script src="https://atlas.microsoft.com/sdk/js/atlas.min.js?api-version=1"></script>
<script type='text/javascript'>
var map;
function GetMap() {
map = new atlas.Map('myMap', {
authOptions: {
authType: 'subscriptionKey',
subscriptionKey: '<YOUR AZURE MAPS KEY>'
}
});
map.events.add('ready', function () {
var layers = map.map.getStyle().layers;
for (var i = 0; i < layers.length; i++) {
if (layers[i].type == 'symbol' && layers[i].source == 'vectorTiles' && layers[i].layout && layers[i].layout['text-field'] && layers[i].layout['text-field'] !== '') {
map.map.setLayoutProperty(layers[i].id, 'visibility', 'none');
}
}
//Add any your post map load code here.
});
}
</script>
</head>
<body onload="GetMap()">
<div id="myMap" style="height:100vh"></div>
</body>
</html>