google地图静态下载和js调用

google地图静态下载和js调用

  • google staticmap使用
  • google地图js调用

google地图静态下载

1)注册google帐号
2)开启google static map功能
新建项目(https://console.developers.google.com)后点击开启服务,选择google staticmap。
总共可以建12个项目,每个项目每天有25000次的免费下载额度(刚开始我以为是总共25000次免费下载额度,其实是一个项目25000次)
3)获取密钥(API-KEY)
4)调用(不限编程语言)

"https://maps.googleapis.com/maps/api/staticmap?parameters&key=YOUR_API-KEY"

google地图js调用

详细参考http://www.runoob.com/googleapi/ref-map.html
例子:

<html>
<head>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBzE9xAESye6Kde-3hT-6B90nfwUkcS8Yw&sensor=false">
script>

<script>
function initialize()
{
var mapProp = {
  center:new google.maps.LatLng(51.508742,-0.120850),
  zoom:5,
  mapTypeId:google.maps.MapTypeId.ROADMAP
  };
var map=new google.maps.Map(document.getElementById("googleMap"),mapProp);
}

google.maps.event.addDomListener(window, 'load', initialize);
script>
head>

<body>
<div id="googleMap" style="width:500px;height:380px;">div>

body>
html>

你可能感兴趣的:(地图)