关于 google地图 api

教程http://www.codechina.org/doc/google/gmapapi/ 地址http://code.google.com/intl/zh-CN/apis/maps/ 教程http://www.codechina.org/doc/google/gmapapi/ 什么是 Google 地图 API? Google 地图 API 使您能够使用 JavaScript 将 Google 地图嵌入自己的网页中。API 提供了大量实用工具用以处理地图(正如 http://maps.google.com 网页上的地图),并通过各种服务向地图添加内容,从而使您能够在您的网站上创建功能强大的地图应用程序。 新增! Google Maps API for Flash® - 在 Adobe® Flash 环境中构建和部署地图应用程序! Sign up for a Google Maps API key, or read more about the API. Map data ©2009 Tele Atlas - Terms of Use 地图 API 是一项免费的测试版服务,在客户可免费访问的任何网站上均可使用。有关更多信息,请参阅使用条款。 学习这个API最简单的方法就是看一个简单的例子。下面的网页显示一个500x300的地图,中心位于California,Palo Alto: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Google Maps JavaScript API Example</title> <script src="http://maps.google.com/maps?file=api&;v=2&key=abcdefg" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ function load() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(37.4419, -122.1419), 13); } } //]]> </script> </head> <body onload="load()" onunload="GUnload()"> <div id="map" style="width: 500px; height: 300px"></div> </body> </html>

如何找到google地图的经纬度

google地图上并没有显示某个地址的经纬度,实际上,我们已经想到了一个办法,可以找到在谷歌地图上任意地点的经度和纬度。
首先打开Google地图,在上面寻找一个地址,然后上下左右移动地图,让这个地址正好处于地图的正中心位置,当您想寻找坐标位置已经处于地图的中心位置的时候,拷贝并粘贴以下代码到你的浏览器地址栏:


javascript:void(prompt('',gApplication.getMap().getCenter()));


这时,你将得到一个弹出式的坐标,这个坐标就是你需要找的经度和纬度。
google静态地图开发指南
http://code.google.com/intl/zh-CN/apis/maps/documentation/staticmaps/#Latlons

你可能感兴趣的:(关于 google地图 api)