How can I get this Google map to resize to the bounds of the Polyline bounds?
I think I am correct to use this:
var bounds = new google.maps.LatLngBounds();
decodedPath.getPath().forEach(function(LatLng) {
bounds.extend(LatLng);
});
map.setBounds(bounds);
but I also think I am putting it in the wrong place.