I use vue-cli to build the application
Quote the script of Baidu Map in index.html,
[<script type="text/javascript" src="http://api.map.baidu.com/api?...My ak"></script>】
Then call the demo of Baidu Map in the mounted function of app.vue
[
// 百度地图API功能
var map = new BMap.Map("allmap"); // 创建Map实例
map.centerAndZoom(new BMap.Point(116.404, 39.915), 11); // 初始化地图,设置中心点坐标和地图级别
map.addControl(new BMap.MapTypeControl()); //添加地图类型控件
map.setCurrentCity("北京"); // 设置地图显示的城市 此项是必须设置的
map.enableScrollWheelZoom(true); //开启鼠标滚轮缩放
】
The prompt information is as follows screenshot
Then I directly quoted the script of Baidu Map on my own page without using vue-cli, and it can be displayed correctly
I don’t know if anyone else has encountered this problem
https://www.talkingcoder.com/... Use asynchronous loading of maps
Global references need to be added in webpack.base.conf.js
webpackConfig
This is loaded globally, so it will be loaded regardless of whether you use it or not.
We started with a global approach, and later adopted asynchronous loading considering user experience.
You can use the writing method above, because nodejs is not sophisticated, so I used the callback method
You can see that there is a callback at the end of the Baidu js link, which will call a function under the window. Then we can register a function and initialize it directly
If you use the above method, only one Baidu map can be initialized for each page. If there are multiple maps, they need to be locked.
When initializing the first map, since the component needs to be loaded asynchronously, it is locked at this time. The second and third maps do not need to load the component asynchronously. They only need to register the callback function and store the function name in a cookie or local Storage etc. Then when the map is loaded, the first registered callback function will be executed, and then the first one can initialize the map normally. At the same time, the notification reads the other two function names from the storage and calls them to complete the initialization, so that the same page can be initialized multiple times at the same time