使用js通过googel实现定位

先看效果图:
1、显示定位位置
位置
关键代码如下:

 geocoder.geocode( { 'address': addArr[i]}, 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
	          });

    
2、把鼠标放到标记位置上时显示相关信息:
位置说明
关键代码如下:
 var con = '姓名: test <br> 时间: 2012-06-05 <br>所在地:' + results[0].formatted_address;
	var infowindow = new google.maps.InfoWindow({
		content : mycontent,
		size : new google.maps.Size(50, 50)


//添加相关事件
	google.maps.event.addListener(marker, 'mouseover', function(response) {
	infowindow.open(map, marker);
	});
	google.maps.event.addListener(marker, 'mouseout', function(response) {
	infowindow.close();








你可能感兴趣的:(js,Google,定位,信息)