Spawning objects at points within another object?

My group has a bunch of random chunks of map that spawn, but within those chunks we want to set some sort of anchor points or gizmo or however unity does this, points where other objects, small groups of models such as crates or background details should spawn after it spawns the larger map chunk.

How would we achieve this? How do you set some sort of anchor or location where other objects should spawn, and then reference to it and make things spawn there?

Thanks!

Instantiate is your friend:

http://unity3d.com/support/documentation/Manual/Instantiating%20Prefabs.html

http://unity3d.com/support/documentation/ScriptReference/Object.Instantiate.html

You could also use Resource.Load if you place the prefabs in /resources: http://unity3d.com/support/documentation/ScriptReference/Resources.Load.html

Also:

http://answers.unity3d.com/questions/13979/how-to-destroy-an-object-then-instantiate-another-from-a-prefab