ภาพรวม
บทแนะนํานี้จะแสดงวิธีแสดงข้อมูลเป็นภาพบน Google Maps ตัวอย่างเช่น แผนที่ในบทแนะนำนี้จะแสดงข้อมูลเกี่ยวกับตำแหน่งของแผ่นดินไหวและความรุนแรงของแผ่นดินไหวเป็นภาพ ดูเทคนิคที่ใช้กับแหล่งข้อมูลของคุณเอง และสร้างเรื่องราวที่มีประสิทธิภาพบน Google Maps อย่างเช่นตัวอย่างด้านล่าง
2 เฟรมแรกที่เห็นด้านบน (จากซ้ายไปขวา) แสดงแผนที่พร้อมเครื่องหมายพื้นฐานและวงกลมที่มีขนาด เฟรมสุดท้ายจะแสดงแผนที่ความร้อน
นำเข้าข้อมูลของคุณ
บทแนะนำนี้ใช้ข้อมูลแผ่นดินไหวแบบเรียลไทม์จากสำนักงานสำรวจทางธรณีวิทยาของสหรัฐอเมริกา (USGS) เว็บไซต์ USGS มีข้อมูลในรูปแบบต่างๆ ซึ่งคุณสามารถคัดลอกไปยังโดเมนเพื่อเข้าถึงในเครื่องโดยแอปพลิเคชันของคุณ บทแนะนำนี้จะขอ JSONP จากเซิร์ฟเวอร์ USGS โดยตรงโดยใส่แท็ก script
ต่อท้ายส่วนหัวของเอกสาร
// Create a script tag and set the USGS URL as the source. var script = document.createElement('script'); script.src = 'http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp'; document.getElementsByTagName('head')[0].appendChild(script);
วางเครื่องหมายพื้นฐาน
เมื่อดึงข้อมูลเกี่ยวกับตําแหน่งที่เกิดแผ่นดินไหวจากฟีด USGS ลงในแอปพลิเคชันแล้ว คุณสามารถแสดงข้อมูลดังกล่าวบนแผนที่ได้ ส่วนนี้จะแสดงวิธีสร้างแผนที่ที่ใช้ข้อมูลที่นำเข้าเพื่อวางเครื่องหมายพื้นฐานที่จุดศูนย์กลางของทุกตำแหน่งที่เกิดแผ่นดินไหว
ส่วนด้านล่างแสดงโค้ดทั้งหมดที่จําเป็นในการสร้างแผนที่ในบทแนะนำนี้
TypeScript
let map: google.maps.Map; function initMap(): void { map = new google.maps.Map(document.getElementById("map") as HTMLElement, { zoom: 2, center: new google.maps.LatLng(2.8, -187.3), mapTypeId: "terrain", }); // Create a <script> tag and set the USGS URL as the source. const script = document.createElement("script"); // This example uses a local copy of the GeoJSON stored at // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp script.src = "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js"; document.getElementsByTagName("head")[0].appendChild(script); } // Loop through the results array and place a marker for each // set of coordinates. const eqfeed_callback = function (results: any) { for (let i = 0; i < results.features.length; i++) { const coords = results.features[i].geometry.coordinates; const latLng = new google.maps.LatLng(coords[1], coords[0]); new google.maps.Marker({ position: latLng, map: map, }); } }; declare global { interface Window { initMap: () => void; eqfeed_callback: (results: any) => void; } } window.initMap = initMap; window.eqfeed_callback = eqfeed_callback;
JavaScript
let map; function initMap() { map = new google.maps.Map(document.getElementById("map"), { zoom: 2, center: new google.maps.LatLng(2.8, -187.3), mapTypeId: "terrain", }); // Create a <script> tag and set the USGS URL as the source. const script = document.createElement("script"); // This example uses a local copy of the GeoJSON stored at // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp script.src = "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js"; document.getElementsByTagName("head")[0].appendChild(script); } // Loop through the results array and place a marker for each // set of coordinates. const eqfeed_callback = function (results) { for (let i = 0; i < results.features.length; i++) { const coords = results.features[i].geometry.coordinates; const latLng = new google.maps.LatLng(coords[1], coords[0]); new google.maps.Marker({ position: latLng, map: map, }); } }; window.initMap = initMap; window.eqfeed_callback = eqfeed_callback;
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; }
HTML
<html> <head> <title>Earthquake Markers</title> <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 script 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>
ลองใช้ตัวอย่าง
ใช้รูปร่างและแผนที่ความร้อนเพื่อปรับแต่งแผนที่
ส่วนนี้จะแสดงวิธีอื่นๆ ในการปรับแต่งชุดข้อมูลริชมีเดียบนแผนที่ ลองดูแผนที่ที่สร้างในส่วนก่อนหน้าของบทแนะนำนี้ ซึ่งแสดงเครื่องหมายที่ตำแหน่งเกิดแผ่นดินไหวทุกแห่ง คุณสามารถปรับแต่งเครื่องหมายเพื่อแสดงข้อมูลอื่นๆ เป็นภาพได้ เช่น สถานที่ที่เกิดแผ่นดินไหวมากที่สุด รวมถึงความรุนแรงหรือความลึกของแผ่นดินไหว
ตัวเลือกในการปรับแต่งเครื่องหมายพื้นฐานมีดังนี้
การใช้ขนาดวงกลม:
คุณสามารถวาดวงกลม (หรือรูปร่างอื่นๆ) ที่มีขนาดสัมพันธ์กับความรุนแรงของแผ่นดินไหวได้โดยใช้สัญลักษณ์ ในลักษณะนี้ แผ่นดินไหวขนาดใหญ่จะแสดงเป็นวงกลมที่ใหญ่ที่สุดบนแผนที่การใช้แผนที่ความร้อน:
เลเยอร์แผนที่ความหนาแน่นในไลบรารีการแสดงภาพเป็นวิธีที่ง่ายแต่มีประสิทธิภาพในการแสดงการกระจายตัวของแผ่นดินไหว แผนที่ความร้อนใช้สีเพื่อแสดงความหนาแน่นของจุด ซึ่งช่วยให้เลือกพื้นที่ที่มีกิจกรรมสูงได้ง่ายขึ้น แผนภูมิความร้อนยังใช้WeightedLocations
ได้ด้วย เช่น เพื่อให้แผ่นดินไหวขนาดใหญ่แสดงอย่างโดดเด่นในแผนภูมิความร้อน
ขนาดของวงกลม
แผนที่ด้านล่างแสดงเครื่องหมายที่กําหนดเองโดยใช้วงกลม ขนาดของวงกลมจะเพิ่มขึ้นตามขนาดของแผ่นดินไหวที่ตำแหน่งนั้นๆ
ส่วนด้านล่างแสดงโค้ดทั้งหมดที่จําเป็นในการสร้างแผนที่ที่มีเครื่องหมายวงกลมที่กําหนดเอง
TypeScript
let map: google.maps.Map; function initMap(): void { map = new google.maps.Map(document.getElementById("map") as HTMLElement, { zoom: 2, center: { lat: -33.865427, lng: 151.196123 }, mapTypeId: "terrain", }); // Create a <script> tag and set the USGS URL as the source. const script = document.createElement("script"); // This example uses a local copy of the GeoJSON stored at // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp script.src = "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js"; document.getElementsByTagName("head")[0].appendChild(script); map.data.setStyle((feature) => { const magnitude = feature.getProperty("mag") as number; return { icon: getCircle(magnitude), }; }); } function getCircle(magnitude: number) { return { path: google.maps.SymbolPath.CIRCLE, fillColor: "red", fillOpacity: 0.2, scale: Math.pow(2, magnitude) / 2, strokeColor: "white", strokeWeight: 0.5, }; } function eqfeed_callback(results: any) { map.data.addGeoJson(results); } declare global { interface Window { initMap: () => void; eqfeed_callback: (results: any) => void; } } window.initMap = initMap; window.eqfeed_callback = eqfeed_callback;
JavaScript
let map; function initMap() { map = new google.maps.Map(document.getElementById("map"), { zoom: 2, center: { lat: -33.865427, lng: 151.196123 }, mapTypeId: "terrain", }); // Create a <script> tag and set the USGS URL as the source. const script = document.createElement("script"); // This example uses a local copy of the GeoJSON stored at // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp script.src = "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js"; document.getElementsByTagName("head")[0].appendChild(script); map.data.setStyle((feature) => { const magnitude = feature.getProperty("mag"); return { icon: getCircle(magnitude), }; }); } function getCircle(magnitude) { return { path: google.maps.SymbolPath.CIRCLE, fillColor: "red", fillOpacity: 0.2, scale: Math.pow(2, magnitude) / 2, strokeColor: "white", strokeWeight: 0.5, }; } function eqfeed_callback(results) { map.data.addGeoJson(results); } window.initMap = initMap; window.eqfeed_callback = eqfeed_callback;
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; }
HTML
<html> <head> <title>Earthquake Circles</title> <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 script 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>
ลองใช้ตัวอย่าง
แผนที่ความหนาแน่น
แผนที่ความร้อนช่วยให้ผู้ชมเข้าใจการกระจายตัวของแผ่นดินไหวที่ USGS รายงาน แผนที่ความร้อนจะใช้สีและรูปร่างเพื่อแสดงการกระจายของข้อมูลแทนการวางเครื่องหมายที่จุดศูนย์กลางแต่ละจุด ในตัวอย่างนี้ สีแดงแสดงถึงพื้นที่ที่มีกิจกรรมแผ่นดินไหวสูง
ส่วนด้านล่างจะแสดงโค้ดทั้งหมดที่จําเป็นในการสร้างแผนที่นี้
TypeScript
let map: google.maps.Map; function initMap(): void { map = new google.maps.Map(document.getElementById("map") as HTMLElement, { zoom: 2, center: { lat: -33.865427, lng: 151.196123 }, mapTypeId: "terrain", }); // Create a <script> tag and set the USGS URL as the source. const script = document.createElement("script"); // This example uses a local copy of the GeoJSON stored at // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp script.src = "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js"; document.getElementsByTagName("head")[0].appendChild(script); } function eqfeed_callback(results: any) { const heatmapData: google.maps.LatLng[] = []; for (let i = 0; i < results.features.length; i++) { const coords = results.features[i].geometry.coordinates; const latLng = new google.maps.LatLng(coords[1], coords[0]); heatmapData.push(latLng); } const heatmap = new google.maps.visualization.HeatmapLayer({ data: heatmapData, dissipating: false, map: map, }); } declare global { interface Window { initMap: () => void; eqfeed_callback: (results: any) => void; } } window.initMap = initMap; window.eqfeed_callback = eqfeed_callback;
JavaScript
let map; function initMap() { map = new google.maps.Map(document.getElementById("map"), { zoom: 2, center: { lat: -33.865427, lng: 151.196123 }, mapTypeId: "terrain", }); // Create a <script> tag and set the USGS URL as the source. const script = document.createElement("script"); // This example uses a local copy of the GeoJSON stored at // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp script.src = "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js"; document.getElementsByTagName("head")[0].appendChild(script); } function eqfeed_callback(results) { const heatmapData = []; for (let i = 0; i < results.features.length; i++) { const coords = results.features[i].geometry.coordinates; const latLng = new google.maps.LatLng(coords[1], coords[0]); heatmapData.push(latLng); } const heatmap = new google.maps.visualization.HeatmapLayer({ data: heatmapData, dissipating: false, map: map, }); } window.initMap = initMap; window.eqfeed_callback = eqfeed_callback;
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; }
HTML
<html> <head> <title>Earthquake Heatmap</title> <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 script 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&libraries=visualization&v=weekly" defer ></script> </body> </html>
ลองใช้ตัวอย่าง
ข้อมูลเพิ่มเติม
อ่านข้อมูลเพิ่มเติมเกี่ยวกับหัวข้อต่อไปนี้