vue3引入高德地图

一、安装依赖

npm install @amap/amap-jsapi-loader

二、

<template>
    <div class="maincenter">
        <div id="container"></div>


    </div>
</template>

<script setup>

import AMapLoader from "@amap/amap-jsapi-loader";
const mmap = () => {
 window._AMapSecurityConfig = {
        securityJsCode: "key对应的code必填",
    };
    AMapLoader.load({
        key: "", // 申请好的Web端开发者Key,首次调用 load 时必填
        version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
    })
        .then((AMap) => {
            const map = new AMap.Map("container", {
                // 设置地图容器id
                viewMode: "3D", // 是否为3D地图模式
                zoom: 15, // 初始化地图级别
                // mapStyle: "amap://styles/0824ae733ca7d0699ff2d79d166a15b3", //设置地图的显示样式
                resizeEnable: true, //是否监控地图容器尺寸变化
                dragEnable: true, //初始状态下可移动
                center: [120.396005, 36.3210788], //初始化地图中心点青岛农大
            });
        })
        .catch((e) => {
            console.log(e);
        })


}
 mmap()
</script>
<style lang="scss" scoped>
.maincenter {
    width: 100%;
    position: relative;
}

#container {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
}

i {
    font-style: normal;
}
</style>

如图: 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值