试试看:
//observe click
google.maps.event.addListener(map,'click',function(e){
//if there is no Polyline-instance, create a new Polyline
//with a path set to the clicked latLng
if(!line){
line=new google.maps.Polyline({map:map,path:[e.latLng],clickable:false});
}
//always push the clicked latLng to the path
//this point will be used temporarily for the mousemove-event
line.getPath().push(e.latLng);
new google.maps.Marker({map:map,position:e.latLng,
draggable:true,
icon:{url:'http://maps.gstatic.com/mapfiles/markers2/dd-via.png',
anchor:new google.maps.Point(5,5)}})
});
//observe mousemove
google.maps.event.addListener(map,'mousemove',function(e){
if(line){
//set the last point of the path to the mousemove-latLng
line.getPath().setAt(line.getPath().getLength()-1,e.latLng)
}
});
演示:http: //jsfiddle.net/doktormolle/4yPDg/
注意:这部分代码是多余的:
var coord = new google.maps.LatLng(option.latLng.lb, option.latLng.mb);
option.latLng
已经是了google.maps.LatLng
,可以直接使用
var coord = option.latLng;
此外:您不应该使用这些未记录的属性,例如mb
or lb
,这些属性的名称不是固定的,可能会在下一个会话中更改。