使用 JS 的 Rails 中的折线



我正在尝试在js(rails(中绘制简单的折线,但它没有显示任何内容。

function drawlines()
{
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
geodesic: true,
strokeColor: '#ff0000',
strokeOpacity: 1.0,
strokeWeight: 25,
map:map
});
flightPath.setMap(map);
console.log('drawn');
}

我建议使用这段代码。在您的代码中,您不需要使用 map:map 的设置。

试试这个代码

function drawlines(){
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
geodesic: true,
strokeColor: '#ff0000',
strokeOpacity: 1.0,
strokeWeight: 25,
});
flightPath.setMap(map);
}

相关内容

  • 没有找到相关文章

最新更新