我试图找到链接或文档,知道如何使用谷歌地图为我的网站。我正在使用PHP。我需要这个代码。虽然我尝试了很多,但可能是我尝试的方式不正确。任何人都可以建议我链接,我可以找到谷歌地图使用的代码。
提前致谢.........
答案 0 :(得分:5)
Google地图的Hello world(来自API参考):
<!DOCTYPE html "-//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&sensor=true_or_false"
type="text/javascript"></script>
<script type="text/javascript">
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
map.setUIToDefault();
}
}
</script>
</head>
<body onload="initialize()" onunload="GUnload()">
<div id="map_canvas" style="width: 500px; height: 300px"></div>
</body>
</html>
因此,您可以直接将其粘贴到PHP文件中以开始使用。完成后,您可以开始将服务器端内容添加到生成的文件中,也可以从单独的PHP文件中提取一些XML来填充地图。
这里有很多很好的例子:
http://code.google.com/apis/maps/documentation/examples/index.html
答案 1 :(得分:2)
我会从这里开始:Google Maps API。
答案 2 :(得分:0)
大多数google api(以及其他大多数web-api)都可以通过javascript或flex而不是php来更好地处理
我建议你专注于js然后:)
答案 3 :(得分:0)
如果您正在使用PHP,那么使用类似新PHPGoogleMapAPI类的类肯定会受益 - 它也刚刚更新为使用Google Maps JS API的V3。