seems to work in 5.6.x..but in 2017.x the placed prefab is not in correct position.
temporary fix, open PlaceMarkers.cs
// find line
var go = Instantiate(prefab, pos + offset, Quaternion.identity) as GameObject;
// add this after that line
go.transform.position = pos+offset;