首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

GOOGLEmap集成到网站下根据关键字确定位置

2012-10-08 
GOOGLE地图集成到网站上根据关键字确定位置titleGoogle Maps JavaScript API Example/titlescript sr

GOOGLE地图集成到网站上根据关键字确定位置
<title>Google Maps JavaScript API Example</title>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAFyNkisYpeRApb9npqu1QbxScVgSXaHJtFRozQ183btHSsuF5pRTUynHMVcZVwduTbRoM78UAqfZs2g" type="text/javascript"></script>

</head>
<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室");??
?}????
}???

? function showAddress(address) {
? 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);
? }
? }
? );
? }
? }

?</script>
</body>
</html>

热点排行