天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

amap.js 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. export default function MapLoader(isSyncLoad = false, pluginsArr = []) {
  2. // plugin: 字符串数组[ 'AMap.Geocoder', ... ]
  3. return new Promise((resolve, reject) => {
  4. try {
  5. if (window.AMap && (pluginsArr === null || pluginsArr === undefined || pluginsArr.length === 0)) {
  6. resolve(window.AMap);
  7. } else {
  8. var script = document.createElement('script');
  9. script.type = 'text/javascript';
  10. script.async = !isSyncLoad;
  11. script.src = 'https://webapi.amap.com/maps?v=1.4.15&callback=initAMap&key='
  12. + '6e4a6c39ea6d18b8dd3151baa3a7c0d5'
  13. + '&plugin=AMap.BezierCurveEditor'
  14. + (pluginsArr ? ',' + pluginsArr.join(',') : '');
  15. script.onerror = reject;
  16. document.head.appendChild(script);
  17. var script1 = document.createElement('script');
  18. script1.type = 'text/javascript';
  19. script1.async = false;
  20. script1.src = 'https://webapi.amap.com/ui/1.0/main.js?v=1.0.11';
  21. script1.onerror = reject;
  22. if (isSyncLoad) {
  23. document.head.appendChild(script1);
  24. }
  25. }
  26. window.initAMap = () => {
  27. resolve(window.AMap);
  28. }
  29. // JSAPI key搭配静态安全密钥以明文设置, 详情见: https://lbs.amap.com/api/jsapi-v2/guide/abc/load
  30. window._AMapSecurityConfig = {
  31. securityJsCode:'6a421e1233cd12dd4899e373e11bb641',
  32. }
  33. } catch (e) {
  34. console.log(e);
  35. }
  36. })
  37. }