All multiplayer maps need spawn points but there are many different ways of dealing with player respawn. Early problems with multiplayer maps included frequent spawn kills where players learned spawn points and camped nearby to kill off opponents before they could get going. There are few things more off putting than being killed before you’ve moved from your starting spot.
For team based games like Counter Strike players are often spawned at opposing ends of a map in a kind of safe zone. This works perfectly for Counter Strike because you never respawn, once you’re dead you are out of the round. The Call of Duty series developed a respawn system so it would spawn you close to your team mates but away from enemies and this works better in most game modes.
The map designer has to specify the location of the potential spawn points and where possible these should be in areas where the player spawning in has some cover. They also need to allow the player to instantly reorient themselves to the map so they shouldn’t spawn in facing a wall for example.
While the Counter Strike system can be used for multiplayer games where the players respawn after death, if the map is big this can involve a long and frustrating journey for the player to get back into the action. The best system is for the designer to place multiple spawn points and then the game code needs to check for enemy players and only spawn when there are none covering the spawn point. In team based games you want to spawn the player as close as possible to his team mates without placing him directly in the line of fire.