<!DOCTYPE html>
<html>

  <head>
    <base href="." />
    <title>angular playground</title>
    <link rel="stylesheet" href="style.css" />
    <script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
    <script src="https://unpkg.com/zone.js/dist/zone.js"></script>
    <script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script>
    <script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
    <script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
    <script src="config.js"></script>
    <script>
    System.import('app')
      .catch(console.error.bind(console));
  </script>
  </head>

  <body>
    <app>
    loading...
    </app>
  </body>

</html>
/* Styles go here */

world-map {
  flex: 1 1 auto;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
}

app {
  display: flex;
  flex: 1 1 auto;
}
### Angular Starter Plunker - Typescript
System.config({
  //use typescript for compilation
  transpiler: 'typescript',
  //typescript compiler options
  typescriptOptions: {
    emitDecoratorMetadata: true
  },
  paths: {
    'npm:': 'https://unpkg.com/'
  },
  //map tells the System loader where to look for things
  map: {
    
    'app': './src',
    
    '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
    '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
    '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
    '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
    '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
    '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
    '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
    '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
    
    '@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js',
    '@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js',
    '@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js',
    '@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
    '@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
    '@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
    '@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js',
    
    'raphael': 'npm:raphael/raphael.min.js',
    
    'rxjs': 'npm:rxjs',
    'typescript': 'npm:typescript@2.2.1/lib/typescript.js',
    
    'ng-worldmap': 'npm:ng-worldmap@1.2.0/bundles/ng-worldmap.umd.js'
  },
  //packages defines our app package
  packages: {
    app: {
      main: './main.ts',
      defaultExtension: 'ts'
    },
    rxjs: {
      defaultExtension: 'js'
    }
  }
});
//main entry point
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app';

platformBrowserDynamic().bootstrapModule(AppModule)
//our root app component
import {Component, NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {WorldMapModule, WorldMapSettings, Metrics, Country} from 'ng-worldmap';

import { Component, ViewChild, AfterViewInit } from "@angular/core";

import { WorldMapComponent, Country, CountryCustomization } from "ng-worldmap";

@Component({
  selector: "app",
  template: `
    <div class="flex-column">
      <span>Current country: {{currentCountry}}</span>
      <span>Last click: {{lastClick}}</span>
      <span (click)="goGreen()">Go Green</span>
      <span (click)="goRed()">Go Red</span>
      <span (click)="goBlack()">Go Black</span>
    </div>
    <world-map
      #theMap
      (countryEnter)="onCountryEnter($event)"
      (countryLeave)="onCountryLeave($event)"
      (countryClick)="onCountryClick($event)">
    </world-map>`,
  styles: [`:host, .flex-column { display: flex; flex-direction: column }`]
})
export class App implements AfterViewInit {
  @ViewChild("theMap") theMap: WorldMapComponent;
  private currentCountry: string;
  private lastClick: string;

  constructor() { }

  ngAfterViewInit() {
    this.theMap.setCustomization("fr", new CountryCustomization("blue", "red", "white", 5));
  }

  onCountryEnter(country: Country) {
    this.currentCountry = country.name;
  }

  onCountryLeave(country: Country) {
    this.currentCountry = "";
  }

  onCountryClick(country: Country) {
    this.lastClick = country.name;
  }

  goGreen() {
    this.theMap.setForegroundColor("green");
  }

  goRed() {
    this.theMap.setBackgroundColor("red");
  }

  goBlack() {
    this.theMap.setCustomization("us", new CountryCustomization("black", "gray", "black", 5));
  }
}

@NgModule({
  imports: [ BrowserModule, WorldMapModule ],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}