หน้านี้จะแสดงวิธีควบคุมแต้มขั้นสูงในด้านต่อไปนี้
- ตั้งค่าลักษณะการชนกันของเครื่องหมาย
- กำหนดระดับความสูงของเครื่องหมาย
- ควบคุมการแสดงเครื่องหมายตามระดับการซูมแผนที่
ตั้งค่าลักษณะการชนกันของเครื่องหมาย
ลักษณะการชนกันจะควบคุมลักษณะที่เครื่องหมายจะแสดงหากชนกัน (ซ้อนทับกัน) กับเครื่องหมายอื่น สนับสนุนการทำงานของการชนกันเฉพาะบนแผนที่เวกเตอร์เท่านั้น
หากต้องการตั้งค่าลักษณะการชน ให้ตั้งค่า AdvancedMarkerElement.collisionBehavior
เป็นค่าใดค่าหนึ่งต่อไปนี้
REQUIRED
: (ค่าเริ่มต้น) แสดงเครื่องหมายเสมอไม่ว่าจะมีการชนกันหรือไม่ก็ตามOPTIONAL_AND_HIDES_LOWER_PRIORITY
แสดงเครื่องหมายเฉพาะในกรณีที่ไม่ทับซ้อนกับเครื่องหมายอื่นๆ หากเครื่องหมาย 2 ตัวประเภทนี้ซ้อนทับกัน ระบบจะแสดงเครื่องหมายที่มีzIndex
สูงกว่า หากอุปกรณ์มีzIndex
เหมือนกัน หน้าจอที่มีตำแหน่งหน้าจอแนวตั้งอยู่ด้านล่างจะแสดงขึ้นมาREQUIRED_AND_HIDES_OPTIONAL
แสดงเครื่องหมายเสมอโดยไม่คำนึงถึงการชน และซ่อนเครื่องหมายOPTIONAL_AND_HIDES_LOWER_PRIORITY
หรือป้ายกำกับที่จะซ้อนทับกับเครื่องหมาย
ตัวอย่างต่อไปนี้แสดงการตั้งค่าลักษณะการชนกันของหมุด
TypeScript
const advancedMarker = new AdvancedMarkerElement({ position: new google.maps.LatLng({ lat, lng }), map, collisionBehavior: collisionBehavior, });
JavaScript
const advancedMarker = new AdvancedMarkerElement({ position: new google.maps.LatLng({ lat, lng }), map, collisionBehavior: collisionBehavior, });
กำหนดระดับความสูงของเครื่องหมาย
ในแผนที่เวกเตอร์ คุณสามารถตั้งค่าระดับความสูงที่เครื่องหมายจะปรากฏ ซึ่งมีประโยชน์สำหรับการทำให้เครื่องหมายปรากฏอย่างถูกต้องที่เกี่ยวข้องกับเนื้อหาแผนที่ 3 มิติ หากต้องการกำหนดระดับความสูงของเครื่องหมาย ให้ระบุ LatLngAltitude
เป็นค่าสำหรับตัวเลือก MarkerView.position
ดังนี้
TypeScript
const pin = new PinElement({ background: '#4b2e83', borderColor: '#b7a57a', glyphColor: '#b7a57a', scale: 2.0, }); const markerView = new AdvancedMarkerElement({ map, content: pin.element, // Set altitude to 20 meters above the ground. position: { lat: 47.65170843460547, lng: -122.30754, altitude: 20 } as google.maps.LatLngAltitudeLiteral, });
JavaScript
const pin = new PinElement({ background: "#4b2e83", borderColor: "#b7a57a", glyphColor: "#b7a57a", scale: 2.0, }); const markerView = new AdvancedMarkerElement({ map, content: pin.element, // Set altitude to 20 meters above the ground. position: { lat: 47.65170843460547, lng: -122.30754, altitude: 20 }, });
ควบคุมการแสดงเครื่องหมายตามระดับการซูมแผนที่
ดูการเปลี่ยนแปลงการแสดงผลของเครื่องหมาย (เริ่มด้วยการซูมออก)
หากต้องการควบคุมระดับการมองเห็นของเครื่องหมายขั้นสูง ให้สร้างzoom_changed
ฟังก์ชันการเรียกฟัง และเพิ่มฟังก์ชันแบบมีเงื่อนไขเพื่อตั้งค่า AdvancedMarkerElement.map
เป็น null
หากการซูมเกินระดับที่ระบุ ดังที่แสดงในตัวอย่างต่อไปนี้
TypeScript
map.addListener('zoom_changed', () => { const zoom = map.getZoom(); if (zoom) { // Only show each marker above a certain zoom level. marker01.map = zoom > 14 ? map : null; marker02.map = zoom > 15 ? map : null; marker03.map = zoom > 16 ? map : null; marker04.map = zoom > 17 ? map : null; } });
JavaScript
map.addListener("zoom_changed", () => { const zoom = map.getZoom(); if (zoom) { // Only show each marker above a certain zoom level. marker01.map = zoom > 14 ? map : null; marker02.map = zoom > 15 ? map : null; marker03.map = zoom > 16 ? map : null; marker04.map = zoom > 17 ? map : null; } });