Google Maps 教程
Google Maps API
本教程是关于 Google Maps API(**A**pplication **P**rogramming **I**nterface,应用程序编程接口)。
API 是一组用于构建软件应用程序的方法和工具。
HTML 中的 Google Maps
此示例在 HTML 中创建一个 Google Map
示例
<!DOCTYPE html>
<html>
<body>
<h1>我的第一个 Google 地图</h1>
<div id="googleMap" style="width:100%;height:400px;"></div>
<script>
function myMap() {
var mapProp= {
center:new google.maps.LatLng(51.508742,-0.120850),
zoom:5,
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&callback=myMap"></script>
</body>
</html>