when I use Amap, I want to use the English base map, and then change the style of the map
Baidu has no related search, and it is not easy to debug itself in Amap instance. Without the following code, lang:"en", can be displayed as a map of Yuanshandai, and with lang:"en", it becomes the default map template.
related codes
let map = new AMap.Map("realTimeMap", {
resizeEnable: true,
center: [116.397428, 39.90923],
zoom:13,
mapStyle:"amap://styles/whitesmoke",
lang:"en"
});
is it true that lang and mapStyle cannot be used at the same time? Conflict with each other? (the lang:"en", can be displayed as a Yuanshandai map without the following code, and with lang:"en", it becomes the default map template. )