Tùy chỉnh điểm đánh dấu cơ bản

Chọn nền tảng: Android iOS JavaScript

Điểm đánh dấu nâng cao sử dụng hai lớp để xác định điểm đánh dấu: Lớp AdvancedMarkerElement cung cấp các tham số cơ bản (position, titlemap), đồng thời lớp PinElement chứa các tuỳ chọn để phần tuỳ chỉnh. Đoạn mã sau đây hiển thị mã để tạo PinElement mới, sau đó áp dụng cho điểm đánh dấu.

// Create a pin element.
const pin = new PinElement({
    scale: 1.5,
});
// Create a marker and apply the element.
const marker = new AdvancedMarkerElement({
    map,
    position: { lat: 37.419, lng: -122.02 },
    content: pin.element,
});

Trong bản đồ được tạo bằng HTML, các tham số cơ bản cho một điểm đánh dấu được khai báo bằng cách sử dụng phần tử HTML gmp-advanced-marker; bất kỳ tuỳ chỉnh nào sử dụng Lớp PinElement phải được áp dụng theo phương thức lập trình. Để làm điều này, mã của bạn phải truy xuất phần tử gmp-advanced-marker từ trang HTML. Nội dung sau đây đoạn mã hiển thị mã để truy vấn một tập hợp các phần tử gmp-advanced-marker, sau đó lặp lại qua kết quả để áp dụng chế độ tuỳ chỉnh đã khai báo trong PinElement

// Return an array of markers.
const advancedMarkers = [...document.querySelectorAll('gmp-advanced-marker')];

// Loop through the markers
for (let i = 0; i < advancedMarkers.length; i++) {
  const pin = new PinElement({
      scale: 2.0,
  });

  marker.appendChild(pin.element);
}

Trang này cho bạn biết cách tuỳ chỉnh điểm đánh dấu theo các cách sau:

Sơ đồ minh hoạ các thành phần của một Điểm đánh dấu nâng cao.
Hình 1: Các thành phần của Điểm đánh dấu nâng cao.

Thêm văn bản tiêu đề

Văn bản tiêu đề xuất hiện khi con trỏ di chuột qua một điểm đánh dấu. Văn bản tiêu đề có thể đọc được bởi trình đọc màn hình.

Để thêm văn bản tiêu đề theo phương thức lập trình, hãy sử dụng AdvancedMarkerElement.title tùy chọn:

// Default marker with title text (no PinElement).
const markerViewWithText = new AdvancedMarkerElement({
  map,
  position: { lat: 37.419, lng: -122.03 },
  title: "Title text for the marker at lat: 37.419, lng: -122.03",
});

Để thêm văn bản tiêu đề vào một điểm đánh dấu được tạo bằng HTML, hãy sử dụng thuộc tính title:

<gmp-map
  center="43.4142989,-124.2301242"
  zoom="4"
  map-id="DEMO_MAP_ID"
  style="height: 400px"
>
  <gmp-advanced-marker
    position="37.4220656,-122.0840897"
    title="Mountain View, CA"
  ></gmp-advanced-marker>
  <gmp-advanced-marker
    position="47.648994,-122.3503845"
    title="Seattle, WA"
  ></gmp-advanced-marker>
</gmp-map>

Điều chỉnh tỷ lệ điểm đánh dấu

Để điều chỉnh tỷ lệ một điểm đánh dấu, hãy sử dụng tuỳ chọn scale.

TypeScript

// Adjust the scale.
const pinScaled = new PinElement({
    scale: 1.5,
});
const markerViewScaled = new AdvancedMarkerElement({
    map,
    position: { lat: 37.419, lng: -122.02 },
    content: pinScaled.element,
});

JavaScript

// Adjust the scale.
const pinScaled = new PinElement({
  scale: 1.5,
});
const markerViewScaled = new AdvancedMarkerElement({
  map,
  position: { lat: 37.419, lng: -122.02 },
  content: pinScaled.element,
});

Thay đổi màu nền

Sử dụng tuỳ chọn PinElement.background để thay đổi màu nền của một điểm đánh dấu:

TypeScript

// Change the background color.
const pinBackground = new PinElement({
    background: '#FBBC04',
});
const markerViewBackground = new AdvancedMarkerElement({
    map,
    position: { lat: 37.419, lng: -122.01 },
    content: pinBackground.element,
});

JavaScript

// Change the background color.
const pinBackground = new PinElement({
  background: "#FBBC04",
});
const markerViewBackground = new AdvancedMarkerElement({
  map,
  position: { lat: 37.419, lng: -122.01 },
  content: pinBackground.element,
});

Thay đổi màu đường viền

Dùng tuỳ chọn PinElement.borderColor để thay đổi màu đường viền của điểm đánh dấu:

TypeScript

// Change the border color.
const pinBorder = new PinElement({
    borderColor: '#137333',
});
const markerViewBorder = new AdvancedMarkerElement({
    map,
    position: { lat: 37.415, lng: -122.03 },
    content: pinBorder.element,
});

JavaScript

// Change the border color.
const pinBorder = new PinElement({
  borderColor: "#137333",
});
const markerViewBorder = new AdvancedMarkerElement({
  map,
  position: { lat: 37.415, lng: -122.03 },
  content: pinBorder.element,
});

Thay đổi màu ký tự

Dùng tuỳ chọn PinElement.glyphColor để thay đổi màu ký tự của một điểm đánh dấu:

TypeScript

// Change the glyph color.
const pinGlyph = new PinElement({
    glyphColor: 'white',
});
const markerViewGlyph = new AdvancedMarkerElement({
    map,
    position: { lat: 37.415, lng: -122.02 },
    content: pinGlyph.element,
});

JavaScript

// Change the glyph color.
const pinGlyph = new PinElement({
  glyphColor: "white",
});
const markerViewGlyph = new AdvancedMarkerElement({
  map,
  position: { lat: 37.415, lng: -122.02 },
  content: pinGlyph.element,
});

Ẩn ký tự

Đặt tuỳ chọn PinElement.glyph thành một chuỗi trống để ẩn ký tự của điểm đánh dấu:

TypeScript

// Hide the glyph.
const pinNoGlyph = new PinElement({
    glyph: '',
});
const markerViewNoGlyph = new AdvancedMarkerElement({
    map,
    position: { lat: 37.415, lng: -122.01 },
    content: pinNoGlyph.element,
});

JavaScript

// Hide the glyph.
const pinNoGlyph = new PinElement({
  glyph: "",
});
const markerViewNoGlyph = new AdvancedMarkerElement({
  map,
  position: { lat: 37.415, lng: -122.01 },
  content: pinNoGlyph.element,
});

Ngoài ra, hãy đặt PinElement.glyphColor về cùng một giá trị như PinElement.background. Tính năng này có hiệu ứng ẩn ký tự một cách trực quan.

Các bước tiếp theo: