Newer
Older
SpaceIntegration_front / src / store / modules / map.ts
dutingting on 23 Oct 2023 320 bytes 封装map
// 地图相关

const useMapStore = defineStore(
  // 唯一ID
  'map',
  {
    state: () => ({
      amapSecurityCode: '182a2c5889f7fe6d90546d9b8f4781ad', // 安全密钥
      amapKey: 'e1733551f35b56f6d8e9c0a9d4c2523b', // 高德地图key
    }),
    getters: {},
    actions: {},
  },
)

export default useMapStore