<!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//EN" "<html xmlns="<head> </head> function showAddress(address) { </script>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API Example</title>
<script src="
<body onload="window.setTimeout('initialize()',1200)" onunload="GUnload()">
<div id="map_canvas" style="width: 500px; height: 300px"></div>
<script type="text/javascript">
var map = null;
var geocoder = null;
function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(39.9493, 116.3975), 13);
// map.setCenter(new GLatLng(39.9410345535317, 116.31178379058838),14);
geocoder = new GClientGeocoder();
alert(geocoder);
showAddress("北京市海淀區紫竹院路62號院賽迪大廈1號樓10層2101室");
}
}
if (geocoder) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
alert("不能解析: " + address);
} else {
map.setCenter(point, 17);
//map.openInfoWindow(map.getCenter(),document.createTextNode("Hello, world"));
var marker = new GMarker(point);
map.addOverlay(marker);
marker.openInfoWindowHtml(address);
}
}
);
}
}
</body>
</html>