<!DOCTYPE html>
<html>

<head>
  <base href="." />
  <title>ng2-bootstrap QuickStart</title>

  <!-- 1. Load libraries -->
  <!-- IE required polyfills, in this exact order -->
  <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.16/system-polyfills.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>

  <!-- load system.js config -->
  <script src="config.js"></script>
  <script>
    System.import('app')
      .catch(console.error.bind(console));
  </script>

  <!-- load bootstrap 3 styles -->
  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
  <style>
     .pac-container {
        z-index: 1054 !important;
    }
  </style>
</head>

<body>
  <my-app>
    loading...
  </my-app>
</body>

</html>

<!-- 
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
-->
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',

    'moment': 'npm:moment/moment.js',
    'rxjs': 'npm:rxjs',
    'typescript': 'npm:typescript@2.0.3/lib/typescript.js',
    'ngx-bootstrap/ngx-bootstrap': 'npm:ngx-bootstrap/bundles/ngx-bootstrap.umd.min.js',
    '@agm/core': 'npm:@agm/core@1.0.0-beta.0/core.umd.js'
  },
  //packages defines our app package
  packages: {
    app: {
      main: './main.ts',
      defaultExtension: 'ts'
    },
    rxjs: {
      defaultExtension: 'js'
    }
  }
});
//our root app component
import {Component, NgModule, NgZone} from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

import { AlertModule, ModalModule } from 'ngx-bootstrap/ngx-bootstrap';
import { AgmCoreModule } from '@agm/core';

declare var google: any = {};

@Component({
  selector: 'my-app',
  styles: [`
    agm-map {
      height: 300px;
    }
  `],
  template: `
    <alert type="success">hello ngx-bootstrap works ;) </alert>
    <button type="button" class="btn btn-primary" (click)="staticModal.show()">Open a  modal</button>
     
      <div class="modal fade" bsModal #staticModal="bs-modal" [config]="{backdrop: 'static'}"
         tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
      <div class="modal-dialog modal-sm">
        <div class="modal-content">
          <div class="modal-header">
            <h4 class="modal-title pull-left">Static modal</h4>
            <button type="button" class="close pull-right" aria-label="Close" (click)="staticModal.hide()">
              <span aria-hidden="true">&times;</span>
            </button>
          </div>
          <div class="modal-body">
            This is static modal, backdrop click will not close it.
            Click <b>&times;</b> to close modal.
                     <input type="text" #pick id="address" class="form-control" [(ngModel)]="pickAddress" name="pickAddress" (ngModelChange)="pickAdd()" placeholder="Pick Up Address" onclick="return false" style="padding-left: 30px;border-radius: 25px;border: 1px solid #31708f;">
           <agm-map [latitude]="lat" [longitude]="lng"></agm-map>
          </div>
        </div>
      </div>
    </div>
  `,
})
export class AppComponent {
  inputAddress;
  // google maps zoom level
  zoom: number = 8;
  // initial center position for the map
  lat: number = 51.673858;
  lng: number = 7.815982;
  constructor(private ngZone: NgZone) {}
  pickAdd() {
    var autocomplete:any;
    var options = { componentRestrictions: {country: "IN"} };
    this.inputAddress = document.getElementById('address');
    autocomplete = new 
    google.maps.places.Autocomplete(this.inputAddress,options);
    google.maps.event.addListener(autocomplete, 'place_changed', ()=> {
      this.ngZone.run(() => {
        this.zoom=8;
        var place = autocomplete.getPlace();
        console.log('place', place);
        this.lat = place.geometry.location.lat();
        this.lng = place.geometry.location.lng();
        //this.getGeoLocation(this.lat,this.lng);
      });
    });
  }
}

@NgModule({
  imports: [
    BrowserModule, 
    FormsModule,  
    AlertModule.forRoot(), 
    ModalModule.forRoot(),
    AgmCoreModule.forRoot({
      apiKey: 'AIzaSyDO5DcwISSHqCCvAmIRtnSq3cran_HjBls',
      libraries: 'places'
    }) 
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}
//main entry point
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app.module';

platformBrowserDynamic().bootstrapModule(AppModule)