מבוא
שכבות-על הן אובייקטים במפה שמקושרים לקווי רוחב או אורך, ולכן הם זזים כשגוררים את המפה או משנים את מרחק התצוגה שלה. אם רוצים להציב תמונה במפה, אפשר להשתמש באובייקט GroundOverlay
.
מידע על סוגים אחרים של שכבות-על זמין במאמר ציור במפה.
הוספת שכבת-על של פני השטח
ה-constructor של
GroundOverlay
מציין כפרמטרים את כתובת ה-URL של התמונה ואת ה-LatLngBounds
של התמונה. התמונה תומרן במפה, תוך התאמה למגבלות של הגבולות שצוינו, ותתאים לפרויקציה של המפה.
TypeScript
// This example uses a GroundOverlay to place an image on the map // showing an antique map of Newark, NJ. let historicalOverlay; function initMap(): void { const map = new google.maps.Map( document.getElementById("map") as HTMLElement, { zoom: 13, center: { lat: 40.74, lng: -74.18 }, } ); const imageBounds = { north: 40.773941, south: 40.712216, east: -74.12544, west: -74.22655, }; historicalOverlay = new google.maps.GroundOverlay( "https://storage.googleapis.com/geo-devrel-public-buckets/newark_nj_1922-661x516.jpeg", imageBounds ); historicalOverlay.setMap(map); } declare global { interface Window { initMap: () => void; } } window.initMap = initMap;
JavaScript
// This example uses a GroundOverlay to place an image on the map // showing an antique map of Newark, NJ. let historicalOverlay; function initMap() { const map = new google.maps.Map(document.getElementById("map"), { zoom: 13, center: { lat: 40.74, lng: -74.18 }, }); const imageBounds = { north: 40.773941, south: 40.712216, east: -74.12544, west: -74.22655, }; historicalOverlay = new google.maps.GroundOverlay( "https://storage.googleapis.com/geo-devrel-public-buckets/newark_nj_1922-661x516.jpeg", imageBounds, ); historicalOverlay.setMap(map); } window.initMap = initMap;
ניסיון של דוגמה
הסרה של שכבת-על של פני השטח
כדי להסיר שכבת-על ממפה, צריך לבצע קריאה ל-method setMap()
של שכבת-העל, ולהעביר את הערך null
. חשוב לזכור שהפעלת השיטה הזו לא מוחקת את שכבת-העל. הוא מסיר את שכבת-העל מהמפה. אם במקום זאת רוצים למחוק את שכבת-העל, צריך להסיר אותה מהמפה ואז להגדיר את שכבת-העל עצמה ל-null
.
function removeOverlay() { historicalOverlay.setMap(null); }