<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&language=zh-CN"></script> <script type="text/javascript"> var geocoder; var map; //实际查询地址 //var query = "辽宁沈阳文化路三号巷11号"; //var query = "东北大学北门"; //显示名称 //var display = "<b>单位: </b>东北大学"; function initialize() { geocoder = new google.maps.Geocoder(); var myOptions = { zoom : 17,//缩放比例 //地图类型 •MapTypeId.ROADMAP •MapTypeId.SATELLITE //•MapTypeId.HYBRID •MapTypeId.TERRAIN mapTypeId : google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); codeAddress(); } function codeAddress() { var address = document.getElementById("address").value;; //地址解析 geocoder.geocode({ ‘address‘ : address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { //依据解析的经度纬度设置坐标居中 map.setCenter(results[0].geometry.location); var marker = new google.maps.Marker({ map : map, position : results[0].geometry.location, title : address, //坐标动画效果 animation : google.maps.Animation.DROP }); var display = "地址: " + results[0].formatted_address; var infowindow = new google.maps.InfoWindow({ content : "<span style=‘font-size:11px‘><b>名称: </b>" + address + "<br>" + display + "</span>", //坐标偏移量,一般不用修改 pixelOffset : 0, position : results[0].geometry.location }); //默认打开信息窗口,点击做伴弹出信息窗口 infowindow.open(map, marker); google.maps.event.addListener(marker, ‘click‘, function() { infowindow.open(map, marker); }); } else { alert("Geocode was not successful for the following reason: " + status); } }); } </script> </head> <body> <body onload="initialize()"> <div id="map_canvas" style="width: 320px; height: 480px;"></div> <div> <input id="address" type="textbox" value="北京"> <input type="button" value="Encode" onclick="codeAddress()"> </div> </body> </body> </html>
时间: 2024-10-29 19:09:37