The newer versions of Angular does not support map. So you need to install it using the command prompt using the following command.
First go the the project directory and use the command:
npm install --save rxjs-compat
Don't forget to import this:
import 'rxjs/add/operator/map';
Thanks!