전단 vue 고 덕 지 도 를 어떻게 사용 합 니까?

3977 단어 vue고덕지도.
우선,등록 키
1개발 자 계 정 등록고 덕 개방 플랫폼 개발 자가 되 었 습 니 다.
    2.로그 인 후"응용 관리"페이지 에 들 어가"새로운 응용 프로그램 만 들 기"
3.응용 프로그램 에 Key,'서비스 플랫폼'항목 을 추가 하려 면'웹 엔 드(JSPI)'를 선택 하 십시오.
그리고 코드 를 쓴다.
   vuecli 에서  public 폴 더 의 index.html 추가 가 져 오기 JS API 의 입구 스 크 립 트 태그

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <link rel="icon" href="./iconLink.png" rel="external nofollow" >
  <title>    </title>
    <!--       script  body  ,       -->
  <script type="text/javascript" src="http://webapi.amap.com/maps?v=2.0&key=d6c35bb2619f107f86ccda4b378415f6&plugin=AMap.MouseTool"></script> <!--     key,        (        ) -->
   <script src="//webapi.amap.com/ui/1.1/main.js?v=1.1.1"></script> <!--        ui  --> </head> <body> <div id="app"></div> </body>
</html>
vue.config.js 에서 설정 수정

module.exports = {
  publicPath: "./",
  configureWebpack: {
    externals: {
      AMap: 'window.AMap',
      AMapUI: 'window.AMapUI' //       
    },
  }
};
다음은 vue 구성 요 소 를 정식으로 작성 합 니 다.
잔말 말고 코드 를 바로 달 아 라.

<template>
  <div class="map_wrapper">
    <div class="box">
      <div id="container" style="width: 100%; height: 500px"></div>
    </div>
  </div>
</template>

<script lang="ts">
import { Vue, Component, Prop, Watch } from 'vue-property-decorator';
@Component({
})
export default class page extends Vue {   //    import AMap from 'amap';        Cannot find module 'amap';          
  protected AMap: any = (window as any).AMap;
  protected AMapUI: any = (window as any).AMapUI;
   //     created    "Error: Map container div not exist"
  mounted() {
      let map = new this.AMap.Map('container', {
        center: [121.227577, 31.101471], //      
        resizeEnable: true, //             
        zoom: 10, //        ,         
        showMarker: true, //                  ,  :true
      });

      //  SimpleInfoWindow,loadUI           'ui/'      
      this.AMapUI.loadUI(['overlay/SimpleInfoWindow'], (SimpleInfoWindow: any) => {
        let marker = new this.AMap.Marker({
          map: map,
          zIndex: 9999999,
          position: map.getCenter(),
        });

        let infoWindow = new SimpleInfoWindow({
          infoTitle: '<strong>     </strong>',
          infoBody: '<p>     。</p>',
          offset: new this.AMap.Pixel(0, -31), //       
        });
        //   map 
        function openInfoWin() {
          infoWindow.open(map, marker.getPosition());
        }
        marker.on('click', () => {
          openInfoWin(); //          
        });
        openInfoWin();
      });
  }
}
</script>

<style scoped lang="scss"></style>
페이지 효 과 는 다음 과 같 습 니 다.

이상 은 전단 vue 가 고 덕 지 도 를 어떻게 사용 하 는 지 에 대한 상세 한 내용 입 니 다.vue 고 덕 지도 에 관 한 자 료 는 저희 의 다른 관련 글 에 주목 하 세 요!

좋은 웹페이지 즐겨찾기