map.js 553 B

1234567891011121314151617181920
  1. import AMapLoader from "@amap/amap-jsapi-loader";
  2. export default class map{
  3. static key = '16c1afa83d703d8c73ef0a64f150d000'
  4. static map = null
  5. static constructor(){
  6. if(!this.map){
  7. this.initAMap()
  8. }
  9. }
  10. static async initAMap(){
  11. let map = await AMapLoader.load({
  12. key:key, // 申请好的Web端开发者Key,首次调用 load 时必填
  13. version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
  14. plugins: ["AMap.RangingTool"], //支持添加多个如:['...','...']
  15. })
  16. console.log(map)
  17. this.map = map
  18. }
  19. }