谷歌地图v3-使折线可点击并修复碎片



我正在尝试为每个状态创建多段线轮廓和填充。我需要状态折线可以点击。此外,当以更大的缩放级别查看时,填充看起来支离破碎。有什么建议吗?

参见下面的代码:

function drawBorder(){
 var Polyline_Path = new google.maps.Polyline({
path: newyork,
strokeColor: "#CD0000",
// color of the outline of the polyline
strokeOpacity: 1,
// between 0.0 and 1.0
strokeWeight: 1,
// The stroke width in pixels
fillColor: "#CD0000",
fillOpacity: 1,
clickable: true
});
Polyline_Path.setMap(map);
google.maps.event.addListener(Polyline_Path, 'click', function() {   
alert('you clicked polyline');    
}); 
}

此代码可以使多段线可单击,但只能在多段线的特定区域中单击。有没有一种方法可以将其配置为检测

状态中任何位置的点击事件

我使用了google.maps.Polygon,它处理了的碎片和可点击问题

相关内容

  • 没有找到相关文章

最新更新