การเอียงและการหมุน

เลือกแพลตฟอร์ม: Android iOS JavaScript

ดูตัวอย่าง

ภาพรวม

คุณสามารถกำหนดการเอียงและการหมุน (ส่วนหัว) บนแผนที่เวกเตอร์ โดยการรวมคุณสมบัติ heading และ tilt เมื่อเริ่มต้นแผนที่ และ โดยเรียกใช้เมธอด setTilt และ setHeading บนแผนที่ ตัวอย่างต่อไปนี้ได้เพิ่มปุ่มบางปุ่มลงในแผนที่ซึ่งจะแสดงการปรับการเอียงและทิศทางโดยเขียนให้เพิ่มขึ้นทีละ 20 องศา

TypeScript

function initMap(): void {
  const map = new google.maps.Map(
    document.getElementById("map") as HTMLElement,
    {
      center: {
        lat: 37.7893719,
        lng: -122.3942,
      },
      zoom: 16,
      heading: 320,
      tilt: 47.5,
      mapId: "90f87356969d889c",
    }
  );

  const buttons: [string, string, number, google.maps.ControlPosition][] = [
    ["Rotate Left", "rotate", 20, google.maps.ControlPosition.LEFT_CENTER],
    ["Rotate Right", "rotate", -20, google.maps.ControlPosition.RIGHT_CENTER],
    ["Tilt Down", "tilt", 20, google.maps.ControlPosition.TOP_CENTER],
    ["Tilt Up", "tilt", -20, google.maps.ControlPosition.BOTTOM_CENTER],
  ];

  buttons.forEach(([text, mode, amount, position]) => {
    const controlDiv = document.createElement("div");
    const controlUI = document.createElement("button");

    controlUI.classList.add("ui-button");
    controlUI.innerText = `${text}`;
    controlUI.addEventListener("click", () => {
      adjustMap(mode, amount);
    });
    controlDiv.appendChild(controlUI);
    map.controls[position].push(controlDiv);
  });

  const adjustMap = function (mode: string, amount: number) {
    switch (mode) {
      case "tilt":
        map.setTilt(map.getTilt()! + amount);
        break;
      case "rotate":
        map.setHeading(map.getHeading()! + amount);
        break;
      default:
        break;
    }
  };
}

declare global {
  interface Window {
    initMap: () => void;
  }
}
window.initMap = initMap;

JavaScript

function initMap() {
  const map = new google.maps.Map(document.getElementById("map"), {
    center: {
      lat: 37.7893719,
      lng: -122.3942,
    },
    zoom: 16,
    heading: 320,
    tilt: 47.5,
    mapId: "90f87356969d889c",
  });
  const buttons = [
    ["Rotate Left", "rotate", 20, google.maps.ControlPosition.LEFT_CENTER],
    ["Rotate Right", "rotate", -20, google.maps.ControlPosition.RIGHT_CENTER],
    ["Tilt Down", "tilt", 20, google.maps.ControlPosition.TOP_CENTER],
    ["Tilt Up", "tilt", -20, google.maps.ControlPosition.BOTTOM_CENTER],
  ];

  buttons.forEach(([text, mode, amount, position]) => {
    const controlDiv = document.createElement("div");
    const controlUI = document.createElement("button");

    controlUI.classList.add("ui-button");
    controlUI.innerText = `${text}`;
    controlUI.addEventListener("click", () => {
      adjustMap(mode, amount);
    });
    controlDiv.appendChild(controlUI);
    map.controls[position].push(controlDiv);
  });

  const adjustMap = function (mode, amount) {
    switch (mode) {
      case "tilt":
        map.setTilt(map.getTilt() + amount);
        break;
      case "rotate":
        map.setHeading(map.getHeading() + amount);
        break;
      default:
        break;
    }
  };
}

window.initMap = initMap;

CSS

/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
  height: 100%;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.ui-button {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 40px;
  cursor: pointer;
}
.ui-button:hover {
  background: rgb(235, 235, 235);
}

HTML

<html>
  <head>
    <title>Tilt and Rotation</title>
    <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>

    <link rel="stylesheet" type="text/css" href="./style.css" />
    <script type="module" src="./index.js"></script>
  </head>
  <body>
    <div id="map"></div>

    <!-- 
      The `defer` attribute causes the callback to execute after the full HTML
      document has been parsed. For non-blocking uses, avoiding race conditions,
      and consistent behavior across browsers, consider loading using Promises.
      See https://developers.google.com/maps/documentation/javascript/load-maps-js-api
      for more information.
      -->
    <script
      src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly"
      defer
    ></script>
  </body>
</html>

ลองใช้ตัวอย่าง

การใช้ท่าทางสัมผัสของเมาส์และแป้นพิมพ์

หากเปิดใช้การโต้ตอบของผู้ใช้ในการเอียงและการหมุน (ส่วนหัว) ไว้ (ไม่ว่าจะแบบเป็นโปรแกรมหรือใน Google Cloud Console) ผู้ใช้จะปรับการเอียงและการหมุนโดยใช้เมาส์และแป้นพิมพ์ได้ ดังนี้

  • ใช้เมาส์กดแป้น Shift ค้างไว้ จากนั้นคลิกและลากเมาส์ขึ้นและลงเพื่อปรับการเอียง ขวาและซ้ายเพื่อปรับส่วนหัว
  • ใช้แป้นพิมพ์ กดปุ่ม Shift ค้างไว้ แล้วใช้ลูกศรขึ้นและลงเพื่อปรับการเอียง และใช้ปุ่มลูกศรขวาและซ้ายเพื่อปรับส่วนหัว

ปรับการเอียงและทิศทางแบบเป็นโปรแกรม

ใช้เมธอด setTilt() และ setHeading() เพื่อปรับการเอียงและทิศทางโดยอัตโนมัติบนแผนที่เวกเตอร์ ทิศทางคือทิศทางที่กล้องหันไปในตามเข็มนาฬิกาโดยเริ่มจากทิศเหนือ ดังนั้น map.setHeading(90) จะหมุนแผนที่ให้หันไปทางทิศตะวันออก มุมเอียงจะวัดจากจุดจอมฟ้า ดังนั้น map.setTilt(0) จะมองแนวตรง ส่วน map.setTilt(45) จะแสดงผลเป็นมุมมองเอียง

  • เรียก setTilt() เพื่อตั้งค่ามุมเอียงของแผนที่ ใช้ getTilt() เพื่อดูค่าการเอียงปัจจุบัน
  • เรียก setHeading() เพื่อกำหนดส่วนหัวของแผนที่ ใช้ getHeading() เพื่อรับค่าส่วนหัวปัจจุบัน

หากต้องการเปลี่ยนศูนย์กลางของแผนที่โดยเก็บการเอียงและทิศทางเดิมไว้ ให้ใช้ map.setCenter() หรือ map.panBy()

โปรดทราบว่าช่วงของมุมที่ใช้ได้จะแตกต่างกันไปตามระดับการซูมปัจจุบัน ค่าที่อยู่นอกช่วงนี้จะถูกบีบให้อยู่ในช่วงที่อนุญาตในปัจจุบัน

คุณยังสามารถใช้เมธอด moveCamera เพื่อเปลี่ยนทิศทาง เอียง จัดกึ่งกลาง และซูมโดยอัตโนมัติ ดูข้อมูลเพิ่มเติม

ผลกระทบต่อวิธีการอื่นๆ

เมื่อใช้การเอียงหรือการหมุนกับแผนที่ ลักษณะการทำงานของเมธอด Maps JavaScript API อื่นๆ จะได้รับผลกระทบ ดังนี้

  • map.getBounds() จะแสดงผลกรอบล้อมรอบที่เล็กที่สุดซึ่งมีพื้นที่ที่มองเห็นได้เสมอ เมื่อใช้การเอียง ขอบเขตที่แสดงผลอาจแสดงพื้นที่ที่ใหญ่กว่าพื้นที่ที่มองเห็นได้ของวิวพอร์ตของแผนที่
  • map.fitBounds() จะรีเซ็ตการเอียงและการมุ่งหน้าไปที่ 0 ก่อนทำขอบเขต
  • map.panToBounds() จะรีเซ็ตการเอียงและการมุ่งหน้าไปที่ 0 ก่อนเลื่อนขอบเขต
  • map.setTilt() ยอมรับค่าใดก็ได้ แต่จำกัดการเอียงสูงสุดตามระดับการย่อ/ขยายแผนที่ปัจจุบัน
  • map.setHeading() ยอมรับค่าทั้งหมดและจะแก้ไขค่านั้นให้พอดีกับช่วง [0, 360]