Vue 의 바 이 두 맵 플러그 인 사용 시도

2584 단어 Vue바 이 두 지도
바 이 두 맵 플러그 인
설치 하 다.
CDN 전역 설치

<script src="https://unpkg.com/vue-baidu-map"></script>
플러그 인의 도입

Vue.use(VueBaiduMap.default, {
  ak: 'YOUR_APP_KEY',
})
ak 는 바 이 두 맵 개발 자 플랫폼 에서 신청 한 키 입 니 다.
지도 보기
BmView 는 바 이 두 맵 의 인 스 턴 스 시각 화 영역 을 렌 더 링 하 는 용기 입 니 다.
Bmview 를 사용 하여 지도 인 스 턴 스 를 렌 더 링 합 니 다:

<template id="baidu">  
  <baidu-map class="map">
    <bm-view style="position: absolute; top: 60px; bottom: 20px; left: 20px; right: 20px"></bm-view>
  </baidu-map>
</template>
지도 에 크기 조정 컨트롤 을 추가 합 니 다.

<bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation>
우리 가 렌 더 링 한 지도 인 스 턴 스 에 컨트롤 을 넣 으 면 됩 니 다.
효 과 는 다음 과 같 습 니 다:

전체 코드 는 다음 과 같 습 니 다:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>baidumap</title>
  <script src="https://unpkg.com/vue"></script>
  <script src="https://unpkg.com/vue-baidu-map"></script>
  <style>
    #map{
      width: 1000px;
      height: 500px;
    }
  </style>
</head>
<body>
  <div id="map">
    <baidu></baidu>
  </div>
  <template id="baidu">
      
    <baidu-map class="map">
      <bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation>
      <bm-view style="position: absolute; top: 60px; bottom: 20px; left: 20px; right: 20px"></bm-view>
    </baidu-map>
  
  </template>
  <script>
    Vue.use(VueBaiduMap.default, {
      ak: 'YOUR_APP_KEY',
    })
    Vue.component("baidu",{
      template:'#baidu'
    })
    new Vue({
      el:'#map'
    })
  </script>
</body>
</html>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기