From b247b4c93594be6f0b58792c6376ef892b91d558 Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:13:09 +0800
Subject: [PATCH 1/7] [fix] playground dependency
---
playground/package.json | 1 -
playground/yarn.lock | 7 -------
2 files changed, 8 deletions(-)
diff --git a/playground/package.json b/playground/package.json
index a679959..cb3f285 100644
--- a/playground/package.json
+++ b/playground/package.json
@@ -21,7 +21,6 @@
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
- "agm-direction": "../agm-direction-0.7.0.tgz",
"core-js": "^2.5.4",
"rxjs": "^6.0.0",
"zone.js": "^0.8.26"
diff --git a/playground/yarn.lock b/playground/yarn.lock
index 229fc88..77549d4 100644
--- a/playground/yarn.lock
+++ b/playground/yarn.lock
@@ -409,13 +409,6 @@ agent-base@^4.1.0:
dependencies:
es6-promisify "^5.0.0"
-agm-direction@../agm-direction-0.7.0.tgz:
- version "0.7.0"
- resolved "../agm-direction-0.7.0.tgz#d6e707dcf82b924b6470ae8f5554249f588217d5"
- dependencies:
- "@agm/core" "^1.0.0-beta.3"
- tslib "^1.9.0"
-
ajv-errors@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.0.tgz#ecf021fa108fd17dfb5e6b383f2dd233e31ffc59"
From 7d315236d332708be5568dcd1ccf4ee2a14646f4 Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:14:49 +0800
Subject: [PATCH 2/7] [feat] add render a existing direction #24
---
src/directive/agm-direction.directive.ts | 210 ++++++++++++-----------
1 file changed, 111 insertions(+), 99 deletions(-)
diff --git a/src/directive/agm-direction.directive.ts b/src/directive/agm-direction.directive.ts
index bbae326..2bb26b1 100644
--- a/src/directive/agm-direction.directive.ts
+++ b/src/directive/agm-direction.directive.ts
@@ -32,6 +32,9 @@ export class AgmDirection implements OnChanges, OnInit {
@Input() markerOptions: { origin: any, destination: any, waypoints: any };
@Input() infoWindow: InfoWindow;
+ // Render exist directoin
+ @Input() renderRoute: any;
+
// Direction change event handler
@Output() onChange: EventEmitter = new EventEmitter();
@@ -133,116 +136,125 @@ export class AgmDirection implements OnChanges, OnInit {
this.directionsDisplay.setPanel(this.panel);
}
- this.directionsService.route({
- origin: this.origin,
- destination: this.destination,
- travelMode: this.travelMode,
- transitOptions: this.transitOptions,
- drivingOptions: this.drivingOptions,
- waypoints: this.waypoints,
- optimizeWaypoints: this.optimizeWaypoints,
- provideRouteAlternatives: this.provideRouteAlternatives,
- avoidHighways: this.avoidHighways,
- avoidTolls: this.avoidTolls,
- }, (response: any, status: any) => {
-
- this.onResponse.emit(response);
-
- if (status === 'OK') {
- this.directionsDisplay.setDirections(response);
-
- /**
- * Emit The DirectionsResult Object
- * https://developers.google.com/maps/documentation/javascript/directions?hl=en#DirectionsResults
- */
-
- // Custom Markers
- if (typeof this.markerOptions !== 'undefined') {
-
- // Remove origin markers
- try {
- if (typeof this.originMarker !== 'undefined') {
- google.maps.event.clearListeners(this.originMarker, 'click');
- this.originMarker.setMap(null);
- }
- if (typeof this.destinationMarker !== 'undefined') {
- google.maps.event.clearListeners(this.destinationMarker, 'click');
- this.destinationMarker.setMap(null);
- }
- this.waypointsMarker.forEach((w: any) => {
- if (typeof w !== 'undefined') {
- google.maps.event.clearListeners(w, 'click');
- w.setMap(null);
- }
- });
+ // Render exist direction
+ if (typeof this.renderRoute === 'object' && this.renderRoute !== null) {
+ this.directionsDisplay.setDirections(this.renderRoute);
+ this.renderRoute = null; // or set undefined, ''
+ } else {
- } catch (err) {
- console.error('Can not reset custom marker.', err);
- }
+ // Request new direction
+ this.directionsService.route({
+ origin: this.origin,
+ destination: this.destination,
+ travelMode: this.travelMode,
+ transitOptions: this.transitOptions,
+ drivingOptions: this.drivingOptions,
+ waypoints: this.waypoints,
+ optimizeWaypoints: this.optimizeWaypoints,
+ provideRouteAlternatives: this.provideRouteAlternatives,
+ avoidHighways: this.avoidHighways,
+ avoidTolls: this.avoidTolls,
+ }, (response: any, status: any) => {
+
+ this.onResponse.emit(response);
+
+ if (status === 'OK') {
+ this.directionsDisplay.setDirections(response);
+
+ /**
+ * Emit The DirectionsResult Object
+ * https://developers.google.com/maps/documentation/javascript/directions?hl=en#DirectionsResults
+ */
+
+ // Custom Markers
+ if (typeof this.markerOptions !== 'undefined') {
+
+ // Remove origin markers
+ try {
+ if (typeof this.originMarker !== 'undefined') {
+ google.maps.event.clearListeners(this.originMarker, 'click');
+ this.originMarker.setMap(null);
+ }
+ if (typeof this.destinationMarker !== 'undefined') {
+ google.maps.event.clearListeners(this.destinationMarker, 'click');
+ this.destinationMarker.setMap(null);
+ }
+ this.waypointsMarker.forEach((w: any) => {
+ if (typeof w !== 'undefined') {
+ google.maps.event.clearListeners(w, 'click');
+ w.setMap(null);
+ }
+ });
- // Set custom markers
- const _route = response.routes[0].legs[0];
- try {
- // Origin Marker
- if (typeof this.markerOptions.origin !== 'undefined') {
- this.markerOptions.origin.map = map;
- this.markerOptions.origin.position = _route.start_location;
- this.originMarker = this.setMarker(
- map,
- this.originMarker,
- this.markerOptions.origin,
- _route.start_address,
- );
+ } catch (err) {
+ console.error('Can not reset custom marker.', err);
}
- // Destination Marker
- if (typeof this.markerOptions.destination !== 'undefined') {
- this.markerOptions.destination.map = map;
- this.markerOptions.destination.position = _route.end_location;
- this.destinationMarker = this.setMarker(
- map,
- this.destinationMarker,
- this.markerOptions.destination,
- _route.end_address,
- );
- }
+ // Set custom markers
+ const _route = response.routes[0].legs[0];
+ try {
+ // Origin Marker
+ if (typeof this.markerOptions.origin !== 'undefined') {
+ this.markerOptions.origin.map = map;
+ this.markerOptions.origin.position = _route.start_location;
+ this.originMarker = this.setMarker(
+ map,
+ this.originMarker,
+ this.markerOptions.origin,
+ _route.start_address,
+ );
+ }
- // Waypoints Marker
- if (typeof this.markerOptions.waypoints !== 'undefined') {
-
- this.waypoints.forEach((waypoint: any, index: number) => {
-
- // If waypoints are not array then set all the same
- if (!Array.isArray(this.markerOptions.waypoints)) {
- this.markerOptions.waypoints.map = map;
- this.markerOptions.waypoints.position = _route.via_waypoints[index];
- this.waypointsMarker.push(this.setMarker(
- map,
- waypoint,
- this.markerOptions.waypoints,
- _route.via_waypoints[index],
- ));
- } else {
- this.markerOptions.waypoints[index].map = map;
- this.markerOptions.waypoints[index].position = _route.via_waypoints[index];
- this.waypointsMarker.push(this.setMarker(
- map,
- waypoint,
- this.markerOptions.waypoints[index],
- _route.via_waypoints[index],
- ));
- }
+ // Destination Marker
+ if (typeof this.markerOptions.destination !== 'undefined') {
+ this.markerOptions.destination.map = map;
+ this.markerOptions.destination.position = _route.end_location;
+ this.destinationMarker = this.setMarker(
+ map,
+ this.destinationMarker,
+ this.markerOptions.destination,
+ _route.end_address,
+ );
+ }
- }); // End forEach
+ // Waypoints Marker
+ if (typeof this.markerOptions.waypoints !== 'undefined') {
+
+ this.waypoints.forEach((waypoint: any, index: number) => {
+
+ // If waypoints are not array then set all the same
+ if (!Array.isArray(this.markerOptions.waypoints)) {
+ this.markerOptions.waypoints.map = map;
+ this.markerOptions.waypoints.position = _route.via_waypoints[index];
+ this.waypointsMarker.push(this.setMarker(
+ map,
+ waypoint,
+ this.markerOptions.waypoints,
+ _route.via_waypoints[index],
+ ));
+ } else {
+ this.markerOptions.waypoints[index].map = map;
+ this.markerOptions.waypoints[index].position = _route.via_waypoints[index];
+ this.waypointsMarker.push(this.setMarker(
+ map,
+ waypoint,
+ this.markerOptions.waypoints[index],
+ _route.via_waypoints[index],
+ ));
+ }
+
+ }); // End forEach
+ }
+ } catch (err) {
+ console.error('MarkerOptions error.', err);
}
- } catch (err) {
- console.error('MarkerOptions error.', err);
}
+
}
- }
- });
+ });
+ }
});
}
From 43aa4c7069d1892109e4cd223a94e42b1d59277b Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:15:37 +0800
Subject: [PATCH 3/7] [refactor] add render example
---
playground/src/app/app.component.html | 10 +-
playground/src/app/app.component.ts | 88 +--
playground/src/app/app.module.ts | 2 +
playground/src/assets/data1.json | 1021 +++++++++++++++++++++++++
playground/src/assets/data2.json | 831 ++++++++++++++++++++
5 files changed, 1890 insertions(+), 62 deletions(-)
create mode 100644 playground/src/assets/data1.json
create mode 100644 playground/src/assets/data2.json
diff --git a/playground/src/app/app.component.html b/playground/src/app/app.component.html
index 2131c9b..258e3bd 100644
--- a/playground/src/app/app.component.html
+++ b/playground/src/app/app.component.html
@@ -2,14 +2,12 @@
-
+
+
+
diff --git a/playground/src/app/app.component.ts b/playground/src/app/app.component.ts
index d1653b0..d264347 100644
--- a/playground/src/app/app.component.ts
+++ b/playground/src/app/app.component.ts
@@ -1,77 +1,53 @@
-import { Component } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
+import { Http } from '@angular/http';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
-export class AppComponent {
+export class AppComponent implements OnInit {
public lat: Number = 24.799448;
public lng: Number = 120.979021;
- public origin: any = '大潤發新竹湳雅店';
- public destination: any = '國立新竹高級中學';
+ public origin: any = 'Taichung Main Station';
+ public destination: any = 'Taichung City Government';
- public waypoints: object = [
- {
- location: '國立新竹高級商業職業學校',
- stopover: false,
- },
- {
- location: '新竹市立建功高級中學',
- stopover: false,
- },
- ];
+ public renderRoute: object = null;
- public renderOptions = {
- suppressMarkers: true,
- };
+ public dir = [];
+ public datas = [];
- public markerOptions = {
- origin: {
- icon: 'https://i.imgur.com/7teZKif.png',
- infoWindow: `
- origin
- Taiwan Tech
- `,
- },
- destination: {
- icon: 'https://i.imgur.com/7teZKif.png',
- infoWindow: `
- destination
- Taiwan Tech
- `,
- },
- waypoints: [
- {
- icon: 'https://i.imgur.com/7teZKif.png',
- infoWindow: `
- waypoints111
- Taiwan Tech
- `,
- },
- {
- icon: 'https://i.imgur.com/7teZKif.png',
- infoWindow: `
- waypoints222
- Taiwan Tech
- `,
- },
- ],
- };
-
- public visible: Boolean = true;
+ constructor(private http: Http) {
+ this.http.get('assets/data1.json').subscribe(result => { this.datas.push(result.json()); });
+ this.http.get('assets/data2.json').subscribe(result => { this.datas.push(result.json()); });
+ }
- public onChange(event: any) {
- console.log('onChange', event);
+ async ngOnInit() {
+ // setTimeout(() => this.direction2(), 300);
}
+ // private direction2() {
+ // this.origin = 'Taichung University of Science and Technology';
+ // this.destination = 'Taichung Main Station';
+ // }
+
public onResponse(event: any) {
- console.log('onResponse', event);
+ this.dir.push(event);
+ }
+
+ public renderfromData(index: number) {
+ // Render from memory
+ // this.renderRoute = this.dir[index];
+
+ // Render from json file (build from direction response)
+ this.renderRoute = this.datas[index - 1];
}
- public hide() {
- this.visible = !this.visible;
+ public renderNew() {
+ this.origin = 'Taichung Main Station';
+ this.destination = 'Taichung University of Science and Technology';
+ this.renderRoute = null;
}
}
diff --git a/playground/src/app/app.module.ts b/playground/src/app/app.module.ts
index b8ce9a9..3f62acc 100644
--- a/playground/src/app/app.module.ts
+++ b/playground/src/app/app.module.ts
@@ -1,5 +1,6 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
+import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
@@ -12,6 +13,7 @@ import { AgmDirectionModule } from '../../../dist';
],
imports: [
BrowserModule,
+ HttpModule,
AgmCoreModule.forRoot({
apiKey: '',
}),
diff --git a/playground/src/assets/data1.json b/playground/src/assets/data1.json
new file mode 100644
index 0000000..8aac67c
--- /dev/null
+++ b/playground/src/assets/data1.json
@@ -0,0 +1,1021 @@
+{
+ "geocoded_waypoints":[
+ {
+ "geocoder_status":"OK",
+ "place_id":"ChIJPz37OBQ9aTQRtgYZL9DrtLc",
+ "types":[
+ "establishment",
+ "point_of_interest",
+ "train_station",
+ "transit_station"
+ ]
+ },
+ {
+ "geocoder_status":"OK",
+ "partial_match":true,
+ "place_id":"ChIJ7yJ5-d8XaTQRf0SmfuQ-Uoc",
+ "types":[
+ "administrative_area_level_1",
+ "political"
+ ]
+ }
+ ],
+ "routes":[
+ {
+ "bounds":{
+ "south":24.13811,
+ "west":120.67359,
+ "north":24.147740000000002,
+ "east":120.68788
+ },
+ "copyrights":"地圖資料©2018 Google",
+ "legs":[
+ {
+ "distance":{
+ "text":"2.3 公里",
+ "value":2299
+ },
+ "duration":{
+ "text":"9 分",
+ "value":548
+ },
+ "end_address":"台灣台中市",
+ "end_location":{
+ "lat":24.147741,
+ "lng":120.67364240000006
+ },
+ "start_address":"400台灣台中市中區台灣大道一段1號",
+ "start_location":{
+ "lat":24.1381354,
+ "lng":120.68633
+ },
+ "steps":[
+ {
+ "distance":{
+ "text":"0.1 公里",
+ "value":145
+ },
+ "duration":{
+ "text":"1 分",
+ "value":22
+ },
+ "end_location":{
+ "lat":24.1381375,
+ "lng":120.68775959999994
+ },
+ "polyline":{
+ "points":"knirCqpr_V?Q?cA?O@Q@U@k@CqAAQ"
+ },
+ "start_location":{
+ "lat":24.1381354,
+ "lng":120.68633
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"knirCqpr_V?Q?cA?O@Q@U@k@CqAAQ",
+ "path":[
+ {
+ "lat":24.138140000000003,
+ "lng":120.68633000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68642000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68676
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68684
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68693
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68704000000001
+ },
+ {
+ "lat":24.13811,
+ "lng":120.68726000000001
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68767000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68776000000001
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.138140000000003,
+ "lng":120.68633000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68642000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68676
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68684
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68693
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68704000000001
+ },
+ {
+ "lat":24.13811,
+ "lng":120.68726000000001
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68767000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68776000000001
+ }
+ ],
+ "instructions":"往東走新民街朝八德街前進",
+ "maneuver":"",
+ "start_point":{
+ "lat":24.1381354,
+ "lng":120.68633
+ },
+ "end_point":{
+ "lat":24.1381375,
+ "lng":120.68775959999994
+ }
+ },
+ {
+ "distance":{
+ "text":"0.2 公里",
+ "value":223
+ },
+ "duration":{
+ "text":"1 分",
+ "value":43
+ },
+ "end_location":{
+ "lat":24.1401431,
+ "lng":120.68787969999994
+ },
+ "maneuver":"turn-left",
+ "polyline":{
+ "points":"knirCoyr_Vw@EwAEiAAk@CW?qBE"
+ },
+ "start_location":{
+ "lat":24.1381375,
+ "lng":120.68775959999994
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"knirCoyr_Vw@EwAEiAAk@CW?qBE",
+ "path":[
+ {
+ "lat":24.138140000000003,
+ "lng":120.68776000000001
+ },
+ {
+ "lat":24.138420000000004,
+ "lng":120.68779
+ },
+ {
+ "lat":24.13886,
+ "lng":120.68782000000002
+ },
+ {
+ "lat":24.13923,
+ "lng":120.68783
+ },
+ {
+ "lat":24.139450000000004,
+ "lng":120.68785000000001
+ },
+ {
+ "lat":24.139570000000003,
+ "lng":120.68785000000001
+ },
+ {
+ "lat":24.140140000000002,
+ "lng":120.68788
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.138140000000003,
+ "lng":120.68776000000001
+ },
+ {
+ "lat":24.138420000000004,
+ "lng":120.68779
+ },
+ {
+ "lat":24.13886,
+ "lng":120.68782000000002
+ },
+ {
+ "lat":24.13923,
+ "lng":120.68783
+ },
+ {
+ "lat":24.139450000000004,
+ "lng":120.68785000000001
+ },
+ {
+ "lat":24.139570000000003,
+ "lng":120.68785000000001
+ },
+ {
+ "lat":24.140140000000002,
+ "lng":120.68788
+ }
+ ],
+ "instructions":"於武德街向左轉",
+ "start_point":{
+ "lat":24.1381375,
+ "lng":120.68775959999994
+ },
+ "end_point":{
+ "lat":24.1401431,
+ "lng":120.68787969999994
+ }
+ },
+ {
+ "distance":{
+ "text":"0.2 公里",
+ "value":187
+ },
+ "duration":{
+ "text":"2 分",
+ "value":91
+ },
+ "end_location":{
+ "lat":24.1401309,
+ "lng":120.68603570000005
+ },
+ "maneuver":"turn-left",
+ "polyline":{
+ "points":"{zirCgzr_VCxBAzA?hAFnA"
+ },
+ "start_location":{
+ "lat":24.1401431,
+ "lng":120.68787969999994
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"{zirCgzr_VCxBAzA?hAFnA",
+ "path":[
+ {
+ "lat":24.140140000000002,
+ "lng":120.68788
+ },
+ {
+ "lat":24.14016,
+ "lng":120.68727000000001
+ },
+ {
+ "lat":24.14017,
+ "lng":120.68681000000001
+ },
+ {
+ "lat":24.14017,
+ "lng":120.68644
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68604
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.140140000000002,
+ "lng":120.68788
+ },
+ {
+ "lat":24.14016,
+ "lng":120.68727000000001
+ },
+ {
+ "lat":24.14017,
+ "lng":120.68681000000001
+ },
+ {
+ "lat":24.14017,
+ "lng":120.68644
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68604
+ }
+ ],
+ "instructions":"於南京路向左轉",
+ "start_point":{
+ "lat":24.1401431,
+ "lng":120.68787969999994
+ },
+ "end_point":{
+ "lat":24.1401309,
+ "lng":120.68603570000005
+ }
+ },
+ {
+ "distance":{
+ "text":"0.3 公里",
+ "value":303
+ },
+ "duration":{
+ "text":"1 分",
+ "value":81
+ },
+ "end_location":{
+ "lat":24.1415133,
+ "lng":120.68367869999997
+ },
+ "maneuver":"straight",
+ "polyline":{
+ "points":"yzirCwnr_V?X?N?r@Bz@gAdAcApAcBnBg@t@"
+ },
+ "start_location":{
+ "lat":24.1401309,
+ "lng":120.68603570000005
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"yzirCwnr_V?X?N?r@Bz@gAdAcApAcBnBg@t@",
+ "path":[
+ {
+ "lat":24.140130000000003,
+ "lng":120.68604
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68591
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68583000000001
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68557000000001
+ },
+ {
+ "lat":24.140110000000004,
+ "lng":120.68527000000002
+ },
+ {
+ "lat":24.14047,
+ "lng":120.68492
+ },
+ {
+ "lat":24.140810000000002,
+ "lng":120.68451
+ },
+ {
+ "lat":24.14131,
+ "lng":120.68395000000001
+ },
+ {
+ "lat":24.14151,
+ "lng":120.68368000000001
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.140130000000003,
+ "lng":120.68604
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68591
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68583000000001
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68557000000001
+ },
+ {
+ "lat":24.140110000000004,
+ "lng":120.68527000000002
+ },
+ {
+ "lat":24.14047,
+ "lng":120.68492
+ },
+ {
+ "lat":24.140810000000002,
+ "lng":120.68451
+ },
+ {
+ "lat":24.14131,
+ "lng":120.68395000000001
+ },
+ {
+ "lat":24.14151,
+ "lng":120.68368000000001
+ }
+ ],
+ "instructions":"繼續直行走光復路",
+ "start_point":{
+ "lat":24.1401309,
+ "lng":120.68603570000005
+ },
+ "end_point":{
+ "lat":24.1415133,
+ "lng":120.68367869999997
+ }
+ },
+ {
+ "distance":{
+ "text":"0.2 公里",
+ "value":216
+ },
+ "duration":{
+ "text":"1 分",
+ "value":62
+ },
+ "end_location":{
+ "lat":24.1401116,
+ "lng":120.68221169999993
+ },
+ "maneuver":"turn-left",
+ "polyline":{
+ "points":"mcjrC_`r_Vp@t@zAxA|@dAjAnA"
+ },
+ "start_location":{
+ "lat":24.1415133,
+ "lng":120.68367869999997
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"mcjrC_`r_Vp@t@zAxA|@dAjAnA",
+ "path":[
+ {
+ "lat":24.14151,
+ "lng":120.68368000000001
+ },
+ {
+ "lat":24.141260000000003,
+ "lng":120.68341000000001
+ },
+ {
+ "lat":24.140800000000002,
+ "lng":120.68296000000001
+ },
+ {
+ "lat":24.140490000000003,
+ "lng":120.68261000000001
+ },
+ {
+ "lat":24.140110000000004,
+ "lng":120.68221000000001
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.14151,
+ "lng":120.68368000000001
+ },
+ {
+ "lat":24.141260000000003,
+ "lng":120.68341000000001
+ },
+ {
+ "lat":24.140800000000002,
+ "lng":120.68296000000001
+ },
+ {
+ "lat":24.140490000000003,
+ "lng":120.68261000000001
+ },
+ {
+ "lat":24.140110000000004,
+ "lng":120.68221000000001
+ }
+ ],
+ "instructions":"經過港口土鮀鱼羹 (位於左側) 後向左轉",
+ "start_point":{
+ "lat":24.1415133,
+ "lng":120.68367869999997
+ },
+ "end_point":{
+ "lat":24.1401116,
+ "lng":120.68221169999993
+ }
+ },
+ {
+ "distance":{
+ "text":"1.2 公里",
+ "value":1202
+ },
+ "duration":{
+ "text":"4 分",
+ "value":244
+ },
+ "end_location":{
+ "lat":24.1475623,
+ "lng":120.67364250000003
+ },
+ "maneuver":"turn-right",
+ "polyline":{
+ "points":"uzirCyvq_VkApAKNu@`AcAlAaAfAk@r@MNeAlA{@fAyBlCk@l@iB~By@`A[Xc@d@]d@EDsAjBeBhBo@x@e@l@eAnAA@yA~AiAdBwA|A"
+ },
+ "start_location":{
+ "lat":24.1401116,
+ "lng":120.68221169999993
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"uzirCyvq_VkApAKNu@`AcAlAaAfAk@r@MNeAlA{@fAyBlCk@l@iB~By@`A[Xc@d@]d@EDsAjBeBhBo@x@e@l@eAnAA@yA~AiAdBwA|A",
+ "path":[
+ {
+ "lat":24.140110000000004,
+ "lng":120.68221000000001
+ },
+ {
+ "lat":24.140490000000003,
+ "lng":120.68180000000001
+ },
+ {
+ "lat":24.14055,
+ "lng":120.68172000000001
+ },
+ {
+ "lat":24.14082,
+ "lng":120.68139000000001
+ },
+ {
+ "lat":24.141160000000003,
+ "lng":120.68100000000001
+ },
+ {
+ "lat":24.14149,
+ "lng":120.68064000000001
+ },
+ {
+ "lat":24.141710000000003,
+ "lng":120.68038000000001
+ },
+ {
+ "lat":24.14178,
+ "lng":120.68030000000002
+ },
+ {
+ "lat":24.14213,
+ "lng":120.67991
+ },
+ {
+ "lat":24.14243,
+ "lng":120.67955
+ },
+ {
+ "lat":24.143040000000003,
+ "lng":120.67884000000001
+ },
+ {
+ "lat":24.14326,
+ "lng":120.67861
+ },
+ {
+ "lat":24.143790000000003,
+ "lng":120.67797000000002
+ },
+ {
+ "lat":24.144080000000002,
+ "lng":120.67764000000001
+ },
+ {
+ "lat":24.14422,
+ "lng":120.67751000000001
+ },
+ {
+ "lat":24.1444,
+ "lng":120.67732000000001
+ },
+ {
+ "lat":24.144550000000002,
+ "lng":120.67713
+ },
+ {
+ "lat":24.14458,
+ "lng":120.67710000000001
+ },
+ {
+ "lat":24.145000000000003,
+ "lng":120.67656000000001
+ },
+ {
+ "lat":24.14551,
+ "lng":120.67603000000001
+ },
+ {
+ "lat":24.145750000000003,
+ "lng":120.67574
+ },
+ {
+ "lat":24.145940000000003,
+ "lng":120.67551000000002
+ },
+ {
+ "lat":24.14629,
+ "lng":120.67511
+ },
+ {
+ "lat":24.146300000000004,
+ "lng":120.67510000000001
+ },
+ {
+ "lat":24.14675,
+ "lng":120.67462
+ },
+ {
+ "lat":24.14712,
+ "lng":120.67411000000001
+ },
+ {
+ "lat":24.147560000000002,
+ "lng":120.67364
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.140110000000004,
+ "lng":120.68221000000001
+ },
+ {
+ "lat":24.140490000000003,
+ "lng":120.68180000000001
+ },
+ {
+ "lat":24.14055,
+ "lng":120.68172000000001
+ },
+ {
+ "lat":24.14082,
+ "lng":120.68139000000001
+ },
+ {
+ "lat":24.141160000000003,
+ "lng":120.68100000000001
+ },
+ {
+ "lat":24.14149,
+ "lng":120.68064000000001
+ },
+ {
+ "lat":24.141710000000003,
+ "lng":120.68038000000001
+ },
+ {
+ "lat":24.14178,
+ "lng":120.68030000000002
+ },
+ {
+ "lat":24.14213,
+ "lng":120.67991
+ },
+ {
+ "lat":24.14243,
+ "lng":120.67955
+ },
+ {
+ "lat":24.143040000000003,
+ "lng":120.67884000000001
+ },
+ {
+ "lat":24.14326,
+ "lng":120.67861
+ },
+ {
+ "lat":24.143790000000003,
+ "lng":120.67797000000002
+ },
+ {
+ "lat":24.144080000000002,
+ "lng":120.67764000000001
+ },
+ {
+ "lat":24.14422,
+ "lng":120.67751000000001
+ },
+ {
+ "lat":24.1444,
+ "lng":120.67732000000001
+ },
+ {
+ "lat":24.144550000000002,
+ "lng":120.67713
+ },
+ {
+ "lat":24.14458,
+ "lng":120.67710000000001
+ },
+ {
+ "lat":24.145000000000003,
+ "lng":120.67656000000001
+ },
+ {
+ "lat":24.14551,
+ "lng":120.67603000000001
+ },
+ {
+ "lat":24.145750000000003,
+ "lng":120.67574
+ },
+ {
+ "lat":24.145940000000003,
+ "lng":120.67551000000002
+ },
+ {
+ "lat":24.14629,
+ "lng":120.67511
+ },
+ {
+ "lat":24.146300000000004,
+ "lng":120.67510000000001
+ },
+ {
+ "lat":24.14675,
+ "lng":120.67462
+ },
+ {
+ "lat":24.14712,
+ "lng":120.67411000000001
+ },
+ {
+ "lat":24.147560000000002,
+ "lng":120.67364
+ }
+ ],
+ "instructions":"於台灣大道一段/台12線向右轉
經過岱妮蠶絲 自由門市(位於右手邊)
",
+ "start_point":{
+ "lat":24.1401116,
+ "lng":120.68221169999993
+ },
+ "end_point":{
+ "lat":24.1475623,
+ "lng":120.67364250000003
+ }
+ },
+ {
+ "distance":{
+ "text":"23 公尺",
+ "value":23
+ },
+ "duration":{
+ "text":"1 分",
+ "value":5
+ },
+ "end_location":{
+ "lat":24.147741,
+ "lng":120.67364240000006
+ },
+ "maneuver":"turn-right",
+ "polyline":{
+ "points":"gikrCgap_VYHII"
+ },
+ "start_location":{
+ "lat":24.1475623,
+ "lng":120.67364250000003
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"gikrCgap_VYHII",
+ "path":[
+ {
+ "lat":24.147560000000002,
+ "lng":120.67364
+ },
+ {
+ "lat":24.14769,
+ "lng":120.67359
+ },
+ {
+ "lat":24.147740000000002,
+ "lng":120.67364
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.147560000000002,
+ "lng":120.67364
+ },
+ {
+ "lat":24.14769,
+ "lng":120.67359
+ },
+ {
+ "lat":24.147740000000002,
+ "lng":120.67364
+ }
+ ],
+ "instructions":"於五權路/台1乙線向右轉",
+ "start_point":{
+ "lat":24.1475623,
+ "lng":120.67364250000003
+ },
+ "end_point":{
+ "lat":24.147741,
+ "lng":120.67364240000006
+ }
+ }
+ ],
+ "traffic_speed_entry":[
+
+ ],
+ "via_waypoint":[
+
+ ],
+ "via_waypoints":[
+
+ ]
+ }
+ ],
+ "overview_polyline":"knirCqpr_V?uA@a@BaAEcBoCKuBEiCEEtE?hAFnA?h@BnBgAdAcApAcBnBg@t@lCnChCtCwA`ByBnCmBzBsA|AuDtEk@l@iB~BuAzAaAjAyApBeBhBo@x@kB|B{A`BiAdBwA|AYHII",
+ "summary":"台灣大道一段/台12線",
+ "warnings":[
+
+ ],
+ "waypoint_order":[
+
+ ],
+ "overview_path":[
+ {
+ "lat":24.138140000000003,
+ "lng":120.68633000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68676
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68693
+ },
+ {
+ "lat":24.13811,
+ "lng":120.68726000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68776000000001
+ },
+ {
+ "lat":24.13886,
+ "lng":120.68782000000002
+ },
+ {
+ "lat":24.139450000000004,
+ "lng":120.68785000000001
+ },
+ {
+ "lat":24.140140000000002,
+ "lng":120.68788
+ },
+ {
+ "lat":24.14017,
+ "lng":120.68681000000001
+ },
+ {
+ "lat":24.14017,
+ "lng":120.68644
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68604
+ },
+ {
+ "lat":24.140130000000003,
+ "lng":120.68583000000001
+ },
+ {
+ "lat":24.140110000000004,
+ "lng":120.68527000000002
+ },
+ {
+ "lat":24.14047,
+ "lng":120.68492
+ },
+ {
+ "lat":24.140810000000002,
+ "lng":120.68451
+ },
+ {
+ "lat":24.14131,
+ "lng":120.68395000000001
+ },
+ {
+ "lat":24.14151,
+ "lng":120.68368000000001
+ },
+ {
+ "lat":24.140800000000002,
+ "lng":120.68296000000001
+ },
+ {
+ "lat":24.140110000000004,
+ "lng":120.68221000000001
+ },
+ {
+ "lat":24.14055,
+ "lng":120.68172000000001
+ },
+ {
+ "lat":24.141160000000003,
+ "lng":120.68100000000001
+ },
+ {
+ "lat":24.141710000000003,
+ "lng":120.68038000000001
+ },
+ {
+ "lat":24.14213,
+ "lng":120.67991
+ },
+ {
+ "lat":24.143040000000003,
+ "lng":120.67884000000001
+ },
+ {
+ "lat":24.14326,
+ "lng":120.67861
+ },
+ {
+ "lat":24.143790000000003,
+ "lng":120.67797000000002
+ },
+ {
+ "lat":24.14422,
+ "lng":120.67751000000001
+ },
+ {
+ "lat":24.144550000000002,
+ "lng":120.67713
+ },
+ {
+ "lat":24.145000000000003,
+ "lng":120.67656000000001
+ },
+ {
+ "lat":24.14551,
+ "lng":120.67603000000001
+ },
+ {
+ "lat":24.145750000000003,
+ "lng":120.67574
+ },
+ {
+ "lat":24.14629,
+ "lng":120.67511
+ },
+ {
+ "lat":24.14675,
+ "lng":120.67462
+ },
+ {
+ "lat":24.14712,
+ "lng":120.67411000000001
+ },
+ {
+ "lat":24.147560000000002,
+ "lng":120.67364
+ },
+ {
+ "lat":24.14769,
+ "lng":120.67359
+ },
+ {
+ "lat":24.147740000000002,
+ "lng":120.67364
+ }
+ ]
+ }
+ ],
+ "status":"OK",
+ "request":{
+ "origin":{
+ "query":"Taichung Main Station"
+ },
+ "destination":{
+ "query":"Taichung City Government"
+ },
+ "travelMode":"DRIVING",
+ "waypoints":[
+
+ ],
+ "optimizeWaypoints":true,
+ "provideRouteAlternatives":false,
+ "avoidHighways":false,
+ "avoidTolls":false
+ }
+}
\ No newline at end of file
diff --git a/playground/src/assets/data2.json b/playground/src/assets/data2.json
new file mode 100644
index 0000000..1820dac
--- /dev/null
+++ b/playground/src/assets/data2.json
@@ -0,0 +1,831 @@
+{
+ "geocoded_waypoints":[
+ {
+ "geocoder_status":"OK",
+ "place_id":"ChIJYeBiz2g9aTQRNmI_J3PdkXA",
+ "types":[
+ "establishment",
+ "point_of_interest",
+ "university"
+ ]
+ },
+ {
+ "geocoder_status":"OK",
+ "place_id":"ChIJPz37OBQ9aTQRtgYZL9DrtLc",
+ "types":[
+ "establishment",
+ "point_of_interest",
+ "train_station",
+ "transit_station"
+ ]
+ }
+ ],
+ "routes":[
+ {
+ "bounds":{
+ "south":24.13812,
+ "west":120.68027000000001,
+ "north":24.149960000000004,
+ "east":120.68633000000001
+ },
+ "copyrights":"地圖資料©2018 Google",
+ "legs":[
+ {
+ "distance":{
+ "text":"1.7 公里",
+ "value":1704
+ },
+ "duration":{
+ "text":"8 分",
+ "value":452
+ },
+ "end_address":"400台灣台中市中區台灣大道一段1號",
+ "end_location":{
+ "lat":24.1381354,
+ "lng":120.68633
+ },
+ "start_address":"404台灣台中市北區三民路三段129號",
+ "start_location":{
+ "lat":24.149964,
+ "lng":120.68412379999995
+ },
+ "steps":[
+ {
+ "distance":{
+ "text":"0.6 公里",
+ "value":638
+ },
+ "duration":{
+ "text":"2 分",
+ "value":149
+ },
+ "end_location":{
+ "lat":24.1446616,
+ "lng":120.68173520000005
+ },
+ "polyline":{
+ "points":"gxkrCwbr_VND^Lp@RhA^VHd@P~Af@xC|@h@PVHh@LlDdAt@XB@nAf@`@Rn@ZXNn@\\"
+ },
+ "start_location":{
+ "lat":24.149964,
+ "lng":120.68412379999995
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"gxkrCwbr_VND^Lp@RhA^VHd@P~Af@xC|@h@PVHh@LlDdAt@XB@nAf@`@Rn@ZXNn@\\",
+ "path":[
+ {
+ "lat":24.149960000000004,
+ "lng":120.68412000000001
+ },
+ {
+ "lat":24.149880000000003,
+ "lng":120.68409000000001
+ },
+ {
+ "lat":24.149720000000002,
+ "lng":120.68402
+ },
+ {
+ "lat":24.14947,
+ "lng":120.68392000000001
+ },
+ {
+ "lat":24.1491,
+ "lng":120.68376
+ },
+ {
+ "lat":24.14898,
+ "lng":120.68371
+ },
+ {
+ "lat":24.14879,
+ "lng":120.68362
+ },
+ {
+ "lat":24.148310000000002,
+ "lng":120.68342000000001
+ },
+ {
+ "lat":24.147540000000003,
+ "lng":120.68311000000001
+ },
+ {
+ "lat":24.147330000000004,
+ "lng":120.68302000000001
+ },
+ {
+ "lat":24.14721,
+ "lng":120.68297000000001
+ },
+ {
+ "lat":24.147000000000002,
+ "lng":120.6829
+ },
+ {
+ "lat":24.146130000000003,
+ "lng":120.68255
+ },
+ {
+ "lat":24.145860000000003,
+ "lng":120.68242000000001
+ },
+ {
+ "lat":24.145840000000003,
+ "lng":120.68241
+ },
+ {
+ "lat":24.14544,
+ "lng":120.68221000000001
+ },
+ {
+ "lat":24.145270000000004,
+ "lng":120.68211000000001
+ },
+ {
+ "lat":24.145030000000002,
+ "lng":120.68197
+ },
+ {
+ "lat":24.144900000000003,
+ "lng":120.68189000000001
+ },
+ {
+ "lat":24.144660000000002,
+ "lng":120.68174
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.149960000000004,
+ "lng":120.68412000000001
+ },
+ {
+ "lat":24.149880000000003,
+ "lng":120.68409000000001
+ },
+ {
+ "lat":24.149720000000002,
+ "lng":120.68402
+ },
+ {
+ "lat":24.14947,
+ "lng":120.68392000000001
+ },
+ {
+ "lat":24.1491,
+ "lng":120.68376
+ },
+ {
+ "lat":24.14898,
+ "lng":120.68371
+ },
+ {
+ "lat":24.14879,
+ "lng":120.68362
+ },
+ {
+ "lat":24.148310000000002,
+ "lng":120.68342000000001
+ },
+ {
+ "lat":24.147540000000003,
+ "lng":120.68311000000001
+ },
+ {
+ "lat":24.147330000000004,
+ "lng":120.68302000000001
+ },
+ {
+ "lat":24.14721,
+ "lng":120.68297000000001
+ },
+ {
+ "lat":24.147000000000002,
+ "lng":120.6829
+ },
+ {
+ "lat":24.146130000000003,
+ "lng":120.68255
+ },
+ {
+ "lat":24.145860000000003,
+ "lng":120.68242000000001
+ },
+ {
+ "lat":24.145840000000003,
+ "lng":120.68241
+ },
+ {
+ "lat":24.14544,
+ "lng":120.68221000000001
+ },
+ {
+ "lat":24.145270000000004,
+ "lng":120.68211000000001
+ },
+ {
+ "lat":24.145030000000002,
+ "lng":120.68197
+ },
+ {
+ "lat":24.144900000000003,
+ "lng":120.68189000000001
+ },
+ {
+ "lat":24.144660000000002,
+ "lng":120.68174
+ }
+ ],
+ "instructions":"往南走三民路三段朝育才街前進",
+ "maneuver":"",
+ "start_point":{
+ "lat":24.149964,
+ "lng":120.68412379999995
+ },
+ "end_point":{
+ "lat":24.1446616,
+ "lng":120.68173520000005
+ }
+ },
+ {
+ "distance":{
+ "text":"0.2 公里",
+ "value":226
+ },
+ "duration":{
+ "text":"1 分",
+ "value":47
+ },
+ "end_location":{
+ "lat":24.1431426,
+ "lng":120.68027289999998
+ },
+ "polyline":{
+ "points":"cwjrC{sq_V\\LZZ\\Zz@z@JLfAjAfAhA"
+ },
+ "start_location":{
+ "lat":24.1446616,
+ "lng":120.68173520000005
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"cwjrC{sq_V\\LZZ\\Zz@z@JLfAjAfAhA",
+ "path":[
+ {
+ "lat":24.144660000000002,
+ "lng":120.68174
+ },
+ {
+ "lat":24.14451,
+ "lng":120.68167000000001
+ },
+ {
+ "lat":24.144370000000002,
+ "lng":120.68153000000001
+ },
+ {
+ "lat":24.14422,
+ "lng":120.68139000000001
+ },
+ {
+ "lat":24.14392,
+ "lng":120.68109000000001
+ },
+ {
+ "lat":24.143860000000004,
+ "lng":120.68102
+ },
+ {
+ "lat":24.143500000000003,
+ "lng":120.68064000000001
+ },
+ {
+ "lat":24.143140000000002,
+ "lng":120.68027000000001
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.144660000000002,
+ "lng":120.68174
+ },
+ {
+ "lat":24.14451,
+ "lng":120.68167000000001
+ },
+ {
+ "lat":24.144370000000002,
+ "lng":120.68153000000001
+ },
+ {
+ "lat":24.14422,
+ "lng":120.68139000000001
+ },
+ {
+ "lat":24.14392,
+ "lng":120.68109000000001
+ },
+ {
+ "lat":24.143860000000004,
+ "lng":120.68102
+ },
+ {
+ "lat":24.143500000000003,
+ "lng":120.68064000000001
+ },
+ {
+ "lat":24.143140000000002,
+ "lng":120.68027000000001
+ }
+ ],
+ "instructions":"接著走三民路二段",
+ "maneuver":"",
+ "start_point":{
+ "lat":24.1446616,
+ "lng":120.68173520000005
+ },
+ "end_point":{
+ "lat":24.1431426,
+ "lng":120.68027289999998
+ }
+ },
+ {
+ "distance":{
+ "text":"0.8 公里",
+ "value":754
+ },
+ "duration":{
+ "text":"4 分",
+ "value":228
+ },
+ "end_location":{
+ "lat":24.1384433,
+ "lng":120.68560830000001
+ },
+ "maneuver":"turn-left",
+ "polyline":{
+ "points":"smjrCujq_Vz@eAfAqAv@_AbAmAHEFGRYRWHOdBqBh@q@fAqAjAkAx@kAz@gAh@y@@?tAoAj@s@^a@"
+ },
+ "start_location":{
+ "lat":24.1431426,
+ "lng":120.68027289999998
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"smjrCujq_Vz@eAfAqAv@_AbAmAHEFGRYRWHOdBqBh@q@fAqAjAkAx@kAz@gAh@y@@?tAoAj@s@^a@",
+ "path":[
+ {
+ "lat":24.143140000000002,
+ "lng":120.68027000000001
+ },
+ {
+ "lat":24.142840000000003,
+ "lng":120.68062
+ },
+ {
+ "lat":24.142480000000003,
+ "lng":120.68103
+ },
+ {
+ "lat":24.142200000000003,
+ "lng":120.68135000000001
+ },
+ {
+ "lat":24.14186,
+ "lng":120.68174
+ },
+ {
+ "lat":24.141810000000003,
+ "lng":120.68177000000001
+ },
+ {
+ "lat":24.14177,
+ "lng":120.68181000000001
+ },
+ {
+ "lat":24.14167,
+ "lng":120.68194000000001
+ },
+ {
+ "lat":24.14157,
+ "lng":120.68206
+ },
+ {
+ "lat":24.141520000000003,
+ "lng":120.68214
+ },
+ {
+ "lat":24.14101,
+ "lng":120.68271000000001
+ },
+ {
+ "lat":24.140800000000002,
+ "lng":120.68296000000001
+ },
+ {
+ "lat":24.14044,
+ "lng":120.68337000000001
+ },
+ {
+ "lat":24.140060000000002,
+ "lng":120.68375
+ },
+ {
+ "lat":24.139770000000002,
+ "lng":120.68413000000001
+ },
+ {
+ "lat":24.139470000000003,
+ "lng":120.68449000000001
+ },
+ {
+ "lat":24.139260000000004,
+ "lng":120.68478
+ },
+ {
+ "lat":24.13925,
+ "lng":120.68478
+ },
+ {
+ "lat":24.138820000000003,
+ "lng":120.68518000000002
+ },
+ {
+ "lat":24.1386,
+ "lng":120.68544000000001
+ },
+ {
+ "lat":24.138440000000003,
+ "lng":120.68561000000001
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.143140000000002,
+ "lng":120.68027000000001
+ },
+ {
+ "lat":24.142840000000003,
+ "lng":120.68062
+ },
+ {
+ "lat":24.142480000000003,
+ "lng":120.68103
+ },
+ {
+ "lat":24.142200000000003,
+ "lng":120.68135000000001
+ },
+ {
+ "lat":24.14186,
+ "lng":120.68174
+ },
+ {
+ "lat":24.141810000000003,
+ "lng":120.68177000000001
+ },
+ {
+ "lat":24.14177,
+ "lng":120.68181000000001
+ },
+ {
+ "lat":24.14167,
+ "lng":120.68194000000001
+ },
+ {
+ "lat":24.14157,
+ "lng":120.68206
+ },
+ {
+ "lat":24.141520000000003,
+ "lng":120.68214
+ },
+ {
+ "lat":24.14101,
+ "lng":120.68271000000001
+ },
+ {
+ "lat":24.140800000000002,
+ "lng":120.68296000000001
+ },
+ {
+ "lat":24.14044,
+ "lng":120.68337000000001
+ },
+ {
+ "lat":24.140060000000002,
+ "lng":120.68375
+ },
+ {
+ "lat":24.139770000000002,
+ "lng":120.68413000000001
+ },
+ {
+ "lat":24.139470000000003,
+ "lng":120.68449000000001
+ },
+ {
+ "lat":24.139260000000004,
+ "lng":120.68478
+ },
+ {
+ "lat":24.13925,
+ "lng":120.68478
+ },
+ {
+ "lat":24.138820000000003,
+ "lng":120.68518000000002
+ },
+ {
+ "lat":24.1386,
+ "lng":120.68544000000001
+ },
+ {
+ "lat":24.138440000000003,
+ "lng":120.68561000000001
+ }
+ ],
+ "instructions":"於成功路向左轉經過85度C咖啡蛋糕(位於左手邊 350 公尺)
",
+ "start_point":{
+ "lat":24.1431426,
+ "lng":120.68027289999998
+ },
+ "end_point":{
+ "lat":24.1384433,
+ "lng":120.68560830000001
+ }
+ },
+ {
+ "distance":{
+ "text":"59 公尺",
+ "value":59
+ },
+ "duration":{
+ "text":"1 分",
+ "value":20
+ },
+ "end_location":{
+ "lat":24.1381258,
+ "lng":120.68606750000004
+ },
+ "maneuver":"straight",
+ "polyline":{
+ "points":"gpirCalr_VHMn@eABG"
+ },
+ "start_location":{
+ "lat":24.1384433,
+ "lng":120.68560830000001
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"gpirCalr_VHMn@eABG",
+ "path":[
+ {
+ "lat":24.138440000000003,
+ "lng":120.68561000000001
+ },
+ {
+ "lat":24.13839,
+ "lng":120.68568
+ },
+ {
+ "lat":24.138150000000003,
+ "lng":120.68603000000002
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68607000000002
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.138440000000003,
+ "lng":120.68561000000001
+ },
+ {
+ "lat":24.13839,
+ "lng":120.68568
+ },
+ {
+ "lat":24.138150000000003,
+ "lng":120.68603000000002
+ },
+ {
+ "lat":24.13813,
+ "lng":120.68607000000002
+ }
+ ],
+ "instructions":"繼續直行,並繼續走成功路",
+ "start_point":{
+ "lat":24.1384433,
+ "lng":120.68560830000001
+ },
+ "end_point":{
+ "lat":24.1381258,
+ "lng":120.68606750000004
+ }
+ },
+ {
+ "distance":{
+ "text":"27 公尺",
+ "value":27
+ },
+ "duration":{
+ "text":"1 分",
+ "value":8
+ },
+ "end_location":{
+ "lat":24.1381354,
+ "lng":120.68633
+ },
+ "polyline":{
+ "points":"inirC}nr_V@C?ECi@"
+ },
+ "start_location":{
+ "lat":24.1381258,
+ "lng":120.68606750000004
+ },
+ "travel_mode":"DRIVING",
+ "encoded_lat_lngs":"inirC}nr_V@C?ECi@",
+ "path":[
+ {
+ "lat":24.13813,
+ "lng":120.68607000000002
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68609000000001
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68612000000002
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68633000000001
+ }
+ ],
+ "lat_lngs":[
+ {
+ "lat":24.13813,
+ "lng":120.68607000000002
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68609000000001
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68612000000002
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68633000000001
+ }
+ ],
+ "instructions":"從成功路靠左行駛,進入新民街",
+ "maneuver":"",
+ "start_point":{
+ "lat":24.1381258,
+ "lng":120.68606750000004
+ },
+ "end_point":{
+ "lat":24.1381354,
+ "lng":120.68633
+ }
+ }
+ ],
+ "traffic_speed_entry":[
+
+ ],
+ "via_waypoint":[
+
+ ],
+ "via_waypoints":[
+
+ ]
+ }
+ ],
+ "overview_polyline":"gxkrCwbr_VbNhExGnBjDvAhAj@n@\\\\Lx@v@fAhAnCtCbCwClC{Cf@q@HOdBqBpBcCjAkAx@kAdBaCvAoAjAuAx@sADKCo@",
+ "summary":"三民路三段和成功路",
+ "warnings":[
+
+ ],
+ "waypoint_order":[
+
+ ],
+ "overview_path":[
+ {
+ "lat":24.149960000000004,
+ "lng":120.68412000000001
+ },
+ {
+ "lat":24.147540000000003,
+ "lng":120.68311000000001
+ },
+ {
+ "lat":24.146130000000003,
+ "lng":120.68255
+ },
+ {
+ "lat":24.145270000000004,
+ "lng":120.68211000000001
+ },
+ {
+ "lat":24.144900000000003,
+ "lng":120.68189000000001
+ },
+ {
+ "lat":24.144660000000002,
+ "lng":120.68174
+ },
+ {
+ "lat":24.14451,
+ "lng":120.68167000000001
+ },
+ {
+ "lat":24.14422,
+ "lng":120.68139000000001
+ },
+ {
+ "lat":24.143860000000004,
+ "lng":120.68102
+ },
+ {
+ "lat":24.143140000000002,
+ "lng":120.68027000000001
+ },
+ {
+ "lat":24.142480000000003,
+ "lng":120.68103
+ },
+ {
+ "lat":24.14177,
+ "lng":120.68181000000001
+ },
+ {
+ "lat":24.14157,
+ "lng":120.68206
+ },
+ {
+ "lat":24.141520000000003,
+ "lng":120.68214
+ },
+ {
+ "lat":24.14101,
+ "lng":120.68271000000001
+ },
+ {
+ "lat":24.14044,
+ "lng":120.68337000000001
+ },
+ {
+ "lat":24.140060000000002,
+ "lng":120.68375
+ },
+ {
+ "lat":24.139770000000002,
+ "lng":120.68413000000001
+ },
+ {
+ "lat":24.139260000000004,
+ "lng":120.68478
+ },
+ {
+ "lat":24.138820000000003,
+ "lng":120.68518000000002
+ },
+ {
+ "lat":24.138440000000003,
+ "lng":120.68561000000001
+ },
+ {
+ "lat":24.138150000000003,
+ "lng":120.68603000000002
+ },
+ {
+ "lat":24.13812,
+ "lng":120.68609000000001
+ },
+ {
+ "lat":24.138140000000003,
+ "lng":120.68633000000001
+ }
+ ]
+ }
+ ],
+ "status":"OK",
+ "request":{
+ "origin":{
+ "query":"Taichung University of Science and Technology"
+ },
+ "destination":{
+ "query":"Taichung Main Station"
+ },
+ "travelMode":"DRIVING",
+ "waypoints":[
+
+ ],
+ "optimizeWaypoints":true,
+ "provideRouteAlternatives":false,
+ "avoidHighways":false,
+ "avoidTolls":false
+ }
+}
\ No newline at end of file
From 21a385be92faae138bdc1069cd2a8aa12ab5da2b Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:17:08 +0800
Subject: [PATCH 4/7] [update] release version 0.7.3
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 9e1b389..580d942 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "agm-direction",
- "version": "0.7.2",
+ "version": "0.7.3",
"description": "directive for agm (not official)",
"main": "./bundles/agm-direction.umd.js",
"module": "./fesm5/agm-direction.js",
From 10a82b6c93aabc2048469f5ee59dd3325db2f62e Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:18:12 +0800
Subject: [PATCH 5/7] [docs] update docs about new version 0.7.3
---
docs/classes/AppPage.html | 54 +---
docs/components/AppComponent.html | 467 ++++++++++++---------------
docs/coverage.html | 94 +-----
docs/dependencies.html | 54 +---
docs/directives/AgmDirection.html | 348 ++++++++++----------
docs/graph/dependencies.svg | 26 +-
docs/images/coverage-badge.svg | 2 +-
docs/index.html | 54 +---
docs/js/search/search_index.js | 4 +-
docs/license.html | 54 +---
docs/miscellaneous/variables.html | 89 +----
docs/modules.html | 71 +---
docs/modules/AgmDirectionModule.html | 54 +---
docs/modules/AppModule.html | 56 +---
docs/overview.html | 84 +----
15 files changed, 485 insertions(+), 1026 deletions(-)
diff --git a/docs/classes/AppPage.html b/docs/classes/AppPage.html
index 2d30207..4a037ee 100644
--- a/docs/classes/AppPage.html
+++ b/docs/classes/AppPage.html
@@ -80,33 +80,14 @@
AgmDirectionModule
-
-
-
- AgmDirectionModule
-
-
-
+
@@ -462,35 +430,31 @@ Properties
@@ -504,17 +468,21 @@ Methods
|
@@ -528,6 +496,54 @@ Methods
+
+ Constructor
+
+
+
+
+constructor(http: Http)
+ |
+
+
+
+
+ |
+
+
+
+
+
+ Parameters :
+
+
+
+ Name |
+ Type |
+ Optional |
+
+
+
+
+ http |
+
+
+ Http
+ |
+
+
+ no
+ |
+
+
+
+
+
+ |
+
+
+
+
@@ -542,27 +558,27 @@
-
+
- Public
- hide
+
+ ngOnInit
-
+
|
- hide()
+ ngOnInit()
|
-
+
|
@@ -570,7 +586,7 @@
|
@@ -581,27 +597,27 @@
-
+
Public
- onChange
+ onResponse
-
+
|
- onChange(event: any)
+ onResponse(event: any)
|
-
+
|
@@ -651,27 +667,27 @@
-
+
Public
- onResponse
+ renderfromData
-
+
|
- onResponse(event: any)
+ renderfromData(index: number)
|
-
+
|
@@ -690,9 +706,9 @@
- event |
+ index |
- any
+ number
|
@@ -717,87 +733,86 @@
|
-
-
-
-
-
-
+
Public
- destination
+ renderNew
-
+
|
- destination: any
-
+
+ renderNew()
|
-
-
- Type : any
- |
-
-
-
- Default value : '國立新竹高級中學'
- |
-
+
-
+
|
+
+
+
+
+ |
+
+
+
+
+
+
-
+
Public
- lat
+ datas
-
+
|
- lat: Number
+ datas: []
|
- Type : Number
+ Type : []
|
- Default value : 24.799448
+ Default value : []
|
-
+
|
@@ -808,36 +823,36 @@
@@ -829,7 +794,7 @@ Inputs
-
+
|
@@ -853,7 +818,7 @@ Inputs
-
+
|
@@ -874,7 +839,28 @@ Inputs
-
+
+ |
+
+
+
+
+
+
+
+
+ renderRoute
+ |
+
+
+ Type: any
+
+
+ |
+
+
+
+
|
@@ -898,7 +884,7 @@ Inputs
-
+
|
@@ -922,7 +908,7 @@ Inputs
-
+
|
@@ -946,7 +932,7 @@ Inputs
-
+
|
@@ -970,7 +956,7 @@ Inputs
-
+
|
@@ -992,7 +978,7 @@ Outputs
-
+
|
@@ -1011,7 +997,7 @@ Outputs
-
+
|
@@ -1030,7 +1016,7 @@ Outputs
-
+
|
@@ -1067,7 +1053,7 @@
-
+
|
@@ -1106,7 +1092,7 @@
-
+
|
@@ -1174,7 +1160,7 @@
-
+
|
@@ -1213,7 +1199,7 @@
-
+
|
@@ -1350,7 +1336,7 @@
-
+
|
@@ -1390,7 +1376,7 @@
-
+
|
@@ -1430,7 +1416,7 @@
-
+
|
@@ -1470,7 +1456,7 @@
-
+
|
@@ -1505,7 +1491,7 @@
-
+
|
@@ -1545,7 +1531,7 @@
-
+
|
@@ -1593,6 +1579,9 @@
@Input() markerOptions: { origin: any, destination: any, waypoints: any };
@Input() infoWindow: InfoWindow;
+ // Render exist directoin
+ @Input() renderRoute: any;
+
// Direction change event handler
@Output() onChange: EventEmitter<any> = new EventEmitter<any>();
@@ -1694,116 +1683,125 @@
this.directionsDisplay.setPanel(this.panel);
}
- this.directionsService.route({
- origin: this.origin,
- destination: this.destination,
- travelMode: this.travelMode,
- transitOptions: this.transitOptions,
- drivingOptions: this.drivingOptions,
- waypoints: this.waypoints,
- optimizeWaypoints: this.optimizeWaypoints,
- provideRouteAlternatives: this.provideRouteAlternatives,
- avoidHighways: this.avoidHighways,
- avoidTolls: this.avoidTolls,
- }, (response: any, status: any) => {
-
- this.onResponse.emit(response);
-
- if (status === 'OK') {
- this.directionsDisplay.setDirections(response);
-
- /**
- * Emit The DirectionsResult Object
- * https://developers.google.com/maps/documentation/javascript/directions?hl=en#DirectionsResults
- */
-
- // Custom Markers
- if (typeof this.markerOptions !== 'undefined') {
-
- // Remove origin markers
- try {
- if (typeof this.originMarker !== 'undefined') {
- google.maps.event.clearListeners(this.originMarker, 'click');
- this.originMarker.setMap(null);
- }
- if (typeof this.destinationMarker !== 'undefined') {
- google.maps.event.clearListeners(this.destinationMarker, 'click');
- this.destinationMarker.setMap(null);
- }
- this.waypointsMarker.forEach((w: any) => {
- if (typeof w !== 'undefined') {
- google.maps.event.clearListeners(w, 'click');
- w.setMap(null);
- }
- });
+ // Render exist direction
+ if (typeof this.renderRoute === 'object' && this.renderRoute !== null) {
+ this.directionsDisplay.setDirections(this.renderRoute);
+ this.renderRoute = null; // or set undefined, ''
+ } else {
- } catch (err) {
- console.error('Can not reset custom marker.', err);
- }
+ // Request new direction
+ this.directionsService.route({
+ origin: this.origin,
+ destination: this.destination,
+ travelMode: this.travelMode,
+ transitOptions: this.transitOptions,
+ drivingOptions: this.drivingOptions,
+ waypoints: this.waypoints,
+ optimizeWaypoints: this.optimizeWaypoints,
+ provideRouteAlternatives: this.provideRouteAlternatives,
+ avoidHighways: this.avoidHighways,
+ avoidTolls: this.avoidTolls,
+ }, (response: any, status: any) => {
+
+ this.onResponse.emit(response);
+
+ if (status === 'OK') {
+ this.directionsDisplay.setDirections(response);
+
+ /**
+ * Emit The DirectionsResult Object
+ * https://developers.google.com/maps/documentation/javascript/directions?hl=en#DirectionsResults
+ */
+
+ // Custom Markers
+ if (typeof this.markerOptions !== 'undefined') {
+
+ // Remove origin markers
+ try {
+ if (typeof this.originMarker !== 'undefined') {
+ google.maps.event.clearListeners(this.originMarker, 'click');
+ this.originMarker.setMap(null);
+ }
+ if (typeof this.destinationMarker !== 'undefined') {
+ google.maps.event.clearListeners(this.destinationMarker, 'click');
+ this.destinationMarker.setMap(null);
+ }
+ this.waypointsMarker.forEach((w: any) => {
+ if (typeof w !== 'undefined') {
+ google.maps.event.clearListeners(w, 'click');
+ w.setMap(null);
+ }
+ });
- // Set custom markers
- const _route = response.routes[0].legs[0];
- try {
- // Origin Marker
- if (typeof this.markerOptions.origin !== 'undefined') {
- this.markerOptions.origin.map = map;
- this.markerOptions.origin.position = _route.start_location;
- this.originMarker = this.setMarker(
- map,
- this.originMarker,
- this.markerOptions.origin,
- _route.start_address,
- );
+ } catch (err) {
+ console.error('Can not reset custom marker.', err);
}
- // Destination Marker
- if (typeof this.markerOptions.destination !== 'undefined') {
- this.markerOptions.destination.map = map;
- this.markerOptions.destination.position = _route.end_location;
- this.destinationMarker = this.setMarker(
- map,
- this.destinationMarker,
- this.markerOptions.destination,
- _route.end_address,
- );
- }
+ // Set custom markers
+ const _route = response.routes[0].legs[0];
+ try {
+ // Origin Marker
+ if (typeof this.markerOptions.origin !== 'undefined') {
+ this.markerOptions.origin.map = map;
+ this.markerOptions.origin.position = _route.start_location;
+ this.originMarker = this.setMarker(
+ map,
+ this.originMarker,
+ this.markerOptions.origin,
+ _route.start_address,
+ );
+ }
- // Waypoints Marker
- if (typeof this.markerOptions.waypoints !== 'undefined') {
-
- this.waypoints.forEach((waypoint: any, index: number) => {
-
- // If waypoints are not array then set all the same
- if (!Array.isArray(this.markerOptions.waypoints)) {
- this.markerOptions.waypoints.map = map;
- this.markerOptions.waypoints.position = _route.via_waypoints[index];
- this.waypointsMarker.push(this.setMarker(
- map,
- waypoint,
- this.markerOptions.waypoints,
- _route.via_waypoints[index],
- ));
- } else {
- this.markerOptions.waypoints[index].map = map;
- this.markerOptions.waypoints[index].position = _route.via_waypoints[index];
- this.waypointsMarker.push(this.setMarker(
- map,
- waypoint,
- this.markerOptions.waypoints[index],
- _route.via_waypoints[index],
- ));
- }
+ // Destination Marker
+ if (typeof this.markerOptions.destination !== 'undefined') {
+ this.markerOptions.destination.map = map;
+ this.markerOptions.destination.position = _route.end_location;
+ this.destinationMarker = this.setMarker(
+ map,
+ this.destinationMarker,
+ this.markerOptions.destination,
+ _route.end_address,
+ );
+ }
- }); // End forEach
+ // Waypoints Marker
+ if (typeof this.markerOptions.waypoints !== 'undefined') {
+
+ this.waypoints.forEach((waypoint: any, index: number) => {
+
+ // If waypoints are not array then set all the same
+ if (!Array.isArray(this.markerOptions.waypoints)) {
+ this.markerOptions.waypoints.map = map;
+ this.markerOptions.waypoints.position = _route.via_waypoints[index];
+ this.waypointsMarker.push(this.setMarker(
+ map,
+ waypoint,
+ this.markerOptions.waypoints,
+ _route.via_waypoints[index],
+ ));
+ } else {
+ this.markerOptions.waypoints[index].map = map;
+ this.markerOptions.waypoints[index].position = _route.via_waypoints[index];
+ this.waypointsMarker.push(this.setMarker(
+ map,
+ waypoint,
+ this.markerOptions.waypoints[index],
+ _route.via_waypoints[index],
+ ));
+ }
+
+ }); // End forEach
+ }
+ } catch (err) {
+ console.error('MarkerOptions error.', err);
}
- } catch (err) {
- console.error('MarkerOptions error.', err);
}
+
}
- }
- });
+ });
+ }
});
}
diff --git a/docs/graph/dependencies.svg b/docs/graph/dependencies.svg
index d15299d..1f721d1 100644
--- a/docs/graph/dependencies.svg
+++ b/docs/graph/dependencies.svg
@@ -59,14 +59,8 @@
AgmDirection->AgmDirectionModule
-
-
-
-
-
-AgmDirection->AgmDirectionModule
-
-
+
+
@@ -77,14 +71,8 @@
AgmDirectionModule->AgmDirection
-
-
-
-
-
-AgmDirectionModule->AgmDirection
-
-
+
+
@@ -93,7 +81,7 @@
AppModule
-
+
AgmDirectionModule->AppModule
@@ -105,7 +93,7 @@
AppComponent
-
+
AppComponent->AppModule
@@ -117,7 +105,7 @@
AppComponent
-
+
AppModule->AppComponent
diff --git a/docs/images/coverage-badge.svg b/docs/images/coverage-badge.svg
index 17ff78f..20c754d 100644
--- a/docs/images/coverage-badge.svg
+++ b/docs/images/coverage-badge.svg
@@ -4,6 +4,6 @@
documentation
- 2%
+ 1%
diff --git a/docs/index.html b/docs/index.html
index 7d01d9b..3b53505 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -80,33 +80,14 @@
AgmDirectionModule
-
-
-
- AgmDirectionModule
-
-
-
-
AgmDirection
@@ -118,14 +99,14 @@
AppModule
-
- -
- AgmDirectionModule
-
-
-
-
AgmDirection
@@ -296,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/js/search/search_index.js b/docs/js/search/search_index.js
index 56da719..541ec97 100644
--- a/docs/js/search/search_index.js
+++ b/docs/js/search/search_index.js
@@ -1,4 +1,4 @@
var COMPODOC_SEARCH_INDEX = {
- "index": {"version":"2.1.6","fields":["title","body"],"fieldVectors":[["title/modules/AgmDirectionModule.html",[0,0.277,1,0.565]],["body/modules/AgmDirectionModule.html",[0,0.344,1,0.995,2,0.663,3,1.095,4,1.372,5,0.854,6,0.663,7,1.21,8,1.416,9,1.416,10,1.416,11,2.273,12,0.097,13,1.526,14,1.095,15,0.854,16,1.095,17,1.095,18,0.663,19,1.905,20,1.905,21,1.372,22,1.757,23,2.656,24,0.854,25,2.656,26,2.656,27,0.366,28,1.905,29,1.905,30,1.416,31,0.062,32,0.062]],["title/modules/AppModule.html",[0,0.277,33,0.744]],["body/modules/AppModule.html",[0,0.328,1,0.931,2,0.62,3,1.025,4,1.323,5,1.323,6,0.882,7,0.882,12,0.097,13,1.457,14,1.025,15,0.8,16,1.025,17,1.025,18,0.62,21,1.627,22,1.457,24,0.8,27,0.343,31,0.059,32,0.059,33,1.312,34,1.326,35,1.326,36,1.783,37,1.326,38,1.753,39,1.783,40,1.885,41,1.326,42,0.8,43,1.326,44,1.326,45,1.025,46,1.783,47,1.326,48,1.326]],["title/classes/AppPage.html",[27,0.411,49,1.229]],["body/classes/AppPage.html",[7,0.809,12,0.095,16,1.336,17,1.336,18,0.809,21,1.043,27,0.584,30,2.669,31,0.071,32,0.071,42,1.043,49,1.746,50,1.729,51,1.336,52,3.039,53,3.589,54,3.589,55,3.039,56,2.325,57,2.325,58,2.325,59,2.325,60,2.325,61,2.325,62,2.325,63,2.325]],["title/coverage.html",[64,2.137]],["body/coverage.html",[11,1.58,12,0.093,18,0.697,27,0.385,31,0.064,32,0.064,38,0.898,49,1.151,50,1.489,64,1.489,65,1.151,66,1.489,67,2.003,68,2.003,69,2.044,70,2.513,71,1.58,72,2.749,73,2.749,74,2.103,75,1.58,76,3.816,77,3.659,78,2.003,79,2.003,80,1.489,81,2.003,82,1.489,83,2.044,84,1.489,85,2.044,86,1.489,87,1.489,88,2.044,89,2.003,90,2.003,91,2.003]],["title/dependencies.html",[2,0.89,92,1.808]],["body/dependencies.html",[2,1.187,12,0.096,24,1.252,31,0.08,32,0.08,45,1.605,93,2.792,94,2.792,95,2.792,96,2.792,97,2.792,98,2.792,99,3.411]],["title/index.html",[51,1.039,100,1.344,101,1.039]],["body/index.html",[0,0.168,1,0.645,4,0.582,5,0.582,6,0.451,7,0.451,12,0.097,21,1.467,22,1.15,24,0.582,27,0.249,31,0.047,32,0.047,33,0.451,38,1.096,40,1.488,41,0.964,42,0.582,43,0.964,44,0.964,45,1.804,47,0.964,48,0.964,65,1.15,71,2.035,75,0.745,101,0.745,102,3.54,103,1.296,104,2.001,105,0.964,106,2.001,107,1.296,108,2.001,109,1.296,110,1.296,111,3.271,112,1.296,113,1.488,114,2.444,115,1.296,116,2.001,117,1.296,118,1.296,119,1.296,120,1.296,121,1.296,122,1.296,123,1.296,124,1.296,125,1.296,126,2.748,127,2.444,128,2.001,129,2.001,130,2.444,131,2.001,132,1.296,133,1.296,134,1.296,135,1.296,136,1.296,137,2.001,138,2.001,139,1.296,140,1.296,141,1.296,142,1.296,143,1.296,144,1.296,145,1.296,146,1.296,147,1.296,148,1.296,149,1.296,150,1.296,151,2.001,152,2.001,153,1.296,154,0.745,155,0.964]],["title/license.html",[100,1.344,101,1.039,154,1.039]],["body/license.html",[6,0.635,12,0.06,15,0.818,18,0.635,31,0.06,32,0.06,65,1.049,113,1.916,154,1.049,155,1.357,156,2.987,157,1.824,158,1.824,159,1.824,160,2.577,161,1.824,162,1.824,163,1.824,164,1.824,165,2.577,166,1.824,167,3.245,168,3.792,169,1.824,170,2.577,171,2.987,172,1.824,173,2.987,174,2.577,175,1.824,176,1.824,177,1.824,178,1.824,179,1.824,180,1.824,181,1.824,182,1.824,183,1.824,184,1.824,185,1.824,186,1.824,187,1.824,188,1.824,189,2.577,190,2.577,191,1.824,192,1.824,193,2.577,194,1.824,195,1.824,196,1.824,197,1.824,198,1.824,199,1.824,200,1.824,201,1.824,202,1.824,203,1.824,204,1.824,205,1.824,206,1.824,207,1.824,208,1.824,209,1.824,210,1.824,211,1.824,212,1.824,213,1.824,214,1.824,215,1.824]],["title/modules.html",[0,0.372]],["body/modules.html",[0,0.367,1,0.909,12,0.08,31,0.08,32,0.08,33,0.985,42,1.663,216,3.707,217,3.707,218,3.707]],["title/overview.html",[219,2.137]],["body/overview.html",[0,0.365,1,1.03,2,0.723,3,1.194,4,0.932,5,0.932,6,0.723,7,0.723,8,1.545,9,1.545,10,1.545,11,2.268,12,0.091,13,1.62,14,1.194,15,0.932,27,0.399,31,0.066,32,0.066,33,1.316,34,1.545,35,1.545,37,1.545,38,1.697,71,1.194,80,1.545,105,1.545,219,1.545,220,2.077,221,2.819]],["title/miscellaneous/variables.html",[74,1.471,222,1.344]],["body/miscellaneous/variables.html",[12,0.095,31,0.065,32,0.065,51,1.169,66,2.648,69,1.513,70,2.529,74,1.169,75,2.113,82,1.513,83,2.733,84,1.513,85,1.513,86,2.353,87,2.353,88,1.513,222,1.513,223,2.779,224,2.034,225,2.034,226,2.034,227,2.034,228,3.165,229,3.165,230,2.034,231,2.779,232,2.034,233,3.401,234,2.779,235,2.034]]],"invertedIndex":[["",{"_index":12,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":76,"title":{},"body":{"coverage.html":{}}}],["0/1",{"_index":77,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":81,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":78,"title":{},"body":{"coverage.html":{}}}],["1",{"_index":221,"title":{},"body":{"overview.html":{}}}],["1.0.0",{"_index":93,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":96,"title":{},"body":{"dependencies.html":{}}}],["120.975017",{"_index":140,"title":{},"body":{"index.html":{}}}],["120.979021",{"_index":131,"title":{},"body":{"index.html":{}}}],["13",{"_index":72,"title":{},"body":{"coverage.html":{}}}],["2",{"_index":105,"title":{},"body":{"index.html":{},"overview.html":{}}}],["2018",{"_index":158,"title":{},"body":{"license.html":{}}}],["24.799448",{"_index":129,"title":{},"body":{"index.html":{}}}],["24.799524",{"_index":139,"title":{},"body":{"index.html":{}}}],["3",{"_index":220,"title":{},"body":{"overview.html":{}}}],["4/30",{"_index":73,"title":{},"body":{"coverage.html":{}}}],["400px",{"_index":124,"title":{},"body":{"index.html":{}}}],["6.0.0",{"_index":99,"title":{},"body":{"dependencies.html":{}}}],["abov",{"_index":188,"title":{},"body":{"license.html":{}}}],["action",{"_index":210,"title":{},"body":{"license.html":{}}}],["agm",{"_index":102,"title":{},"body":{"index.html":{}}}],["agm/cor",{"_index":45,"title":{},"body":{"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["agm/core📦",{"_index":118,"title":{},"body":{"index.html":{}}}],["agmcoremodul",{"_index":44,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmcoremodule.forroot",{"_index":47,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmdirect",{"_index":11,"title":{},"body":{"modules/AgmDirectionModule.html":{},"coverage.html":{},"overview.html":{}}}],["agmdirectionmodul",{"_index":1,"title":{"modules/AgmDirectionModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["and/or",{"_index":181,"title":{},"body":{"license.html":{}}}],["angular",{"_index":104,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":98,"title":{},"body":{"dependencies.html":{}}}],["angular/cor",{"_index":24,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/platform",{"_index":41,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["api",{"_index":107,"title":{},"body":{"index.html":{}}}],["apikey",{"_index":48,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app.compon",{"_index":43,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["appcompon",{"_index":38,"title":{},"body":{"modules/AppModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["appmodul",{"_index":33,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["apppag",{"_index":49,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["aris",{"_index":214,"title":{},"body":{"license.html":{}}}],["associ",{"_index":169,"title":{},"body":{"license.html":{}}}],["author",{"_index":203,"title":{},"body":{"license.html":{}}}],["beta.3",{"_index":94,"title":{},"body":{"dependencies.html":{}}}],["bootstrap",{"_index":5,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["brows",{"_index":218,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":42,"title":{},"body":{"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"modules.html":{}}}],["browser.get",{"_index":60,"title":{},"body":{"classes/AppPage.html":{}}}],["browsermodul",{"_index":40,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["c",{"_index":157,"title":{},"body":{"license.html":{}}}],["charg",{"_index":164,"title":{},"body":{"license.html":{}}}],["claim",{"_index":206,"title":{},"body":{"license.html":{}}}],["class",{"_index":27,"title":{"classes/AppPage.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["cluster_agmdirectionmodul",{"_index":8,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_declar",{"_index":9,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_export",{"_index":10,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_appmodul",{"_index":34,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":37,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declar",{"_index":35,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_import",{"_index":36,"title":{},"body":{"modules/AppModule.html":{}}}],["command",{"_index":115,"title":{},"body":{"index.html":{}}}],["compon",{"_index":80,"title":{},"body":{"coverage.html":{},"overview.html":{}}}],["condit",{"_index":187,"title":{},"body":{"license.html":{}}}],["connect",{"_index":215,"title":{},"body":{"license.html":{}}}],["context",{"_index":86,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["contract",{"_index":211,"title":{},"body":{"license.html":{}}}],["copi",{"_index":167,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":156,"title":{},"body":{"license.html":{}}}],["coverag",{"_index":64,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["css",{"_index":122,"title":{},"body":{"index.html":{}}}],["damag",{"_index":207,"title":{},"body":{"license.html":{}}}],["deal",{"_index":170,"title":{},"body":{"license.html":{}}}],["declar",{"_index":4,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["default",{"_index":228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["defin",{"_index":55,"title":{},"body":{"classes/AppPage.html":{}}}],["depend",{"_index":2,"title":{"dependencies.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"overview.html":{}}}],["destin",{"_index":133,"title":{},"body":{"index.html":{}}}],["develop",{"_index":149,"title":{},"body":{"index.html":{}}}],["direct",{"_index":71,"title":{},"body":{"coverage.html":{},"index.html":{},"overview.html":{}}}],["direction.direct",{"_index":26,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.directive.t",{"_index":70,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["direction.module.t",{"_index":20,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directive/agm",{"_index":25,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["dist",{"_index":46,"title":{},"body":{"modules/AppModule.html":{}}}],["dist/.../agm",{"_index":227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dist/package/src/directive/agm",{"_index":69,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["distribut",{"_index":179,"title":{},"body":{"license.html":{}}}],["doc",{"_index":147,"title":{},"body":{"index.html":{}}}],["document",{"_index":65,"title":{},"body":{"coverage.html":{},"index.html":{},"license.html":{}}}],["done",{"_index":112,"title":{},"body":{"index.html":{}}}],["element",{"_index":58,"title":{},"body":{"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":61,"title":{},"body":{"classes/AppPage.html":{}}}],["environ",{"_index":83,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["event",{"_index":202,"title":{},"body":{"license.html":{}}}],["export",{"_index":7,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"overview.html":{}}}],["express",{"_index":195,"title":{},"body":{"license.html":{}}}],["fals",{"_index":235,"title":{},"body":{"miscellaneous/variables.html":{}}}],["file",{"_index":18,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"license.html":{}}}],["fit",{"_index":198,"title":{},"body":{"license.html":{}}}],["follow",{"_index":186,"title":{},"body":{"license.html":{}}}],["forroot",{"_index":29,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["free",{"_index":163,"title":{},"body":{"license.html":{}}}],["furnish",{"_index":184,"title":{},"body":{"license.html":{}}}],["gener",{"_index":151,"title":{},"body":{"index.html":{}}}],["get",{"_index":100,"title":{"index.html":{},"license.html":{}},"body":{}}],["getdirect",{"_index":136,"title":{},"body":{"index.html":{}}}],["getparagraphtext",{"_index":53,"title":{},"body":{"classes/AppPage.html":{}}}],["googl",{"_index":75,"title":{},"body":{"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["grant",{"_index":162,"title":{},"body":{"license.html":{}}}],["h1')).gettext",{"_index":63,"title":{},"body":{"classes/AppPage.html":{}}}],["height",{"_index":123,"title":{},"body":{"index.html":{}}}],["herebi",{"_index":161,"title":{},"body":{"license.html":{}}}],["holder",{"_index":204,"title":{},"body":{"license.html":{}}}],["html",{"_index":121,"title":{},"body":{"index.html":{}}}],["identifi",{"_index":67,"title":{},"body":{"coverage.html":{}}}],["impli",{"_index":196,"title":{},"body":{"license.html":{}}}],["import",{"_index":21,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["includ",{"_index":173,"title":{},"body":{"license.html":{}}}],["index",{"_index":51,"title":{"index.html":{}},"body":{"classes/AppPage.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":16,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["instal",{"_index":111,"title":{},"body":{"index.html":{}}}],["key",{"_index":119,"title":{},"body":{"index.html":{}}}],["kind",{"_index":194,"title":{},"body":{"license.html":{}}}],["lat",{"_index":127,"title":{},"body":{"index.html":{}}}],["legend",{"_index":3,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["less",{"_index":148,"title":{},"body":{"index.html":{}}}],["liabil",{"_index":208,"title":{},"body":{"license.html":{}}}],["liabl",{"_index":205,"title":{},"body":{"license.html":{}}}],["librari",{"_index":152,"title":{},"body":{"index.html":{}}}],["licens",{"_index":154,"title":{"license.html":{}},"body":{"index.html":{},"license.html":{}}}],["limit",{"_index":174,"title":{},"body":{"license.html":{}}}],["lng",{"_index":130,"title":{},"body":{"index.html":{}}}],["main",{"_index":142,"title":{},"body":{"index.html":{}}}],["map",{"_index":106,"title":{},"body":{"index.html":{}}}],["match",{"_index":32,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["merchant",{"_index":197,"title":{},"body":{"license.html":{}}}],["merg",{"_index":177,"title":{},"body":{"license.html":{}}}],["method",{"_index":52,"title":{},"body":{"classes/AppPage.html":{}}}],["miscellan",{"_index":222,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["mit",{"_index":155,"title":{},"body":{"index.html":{},"license.html":{}}}],["modifi",{"_index":176,"title":{},"body":{"license.html":{}}}],["modul",{"_index":0,"title":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"modules.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["modulewithprovid",{"_index":23,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["navigateto",{"_index":54,"title":{},"body":{"classes/AppPage.html":{}}}],["new",{"_index":89,"title":{},"body":{"coverage.html":{}}}],["ngmodul",{"_index":22,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{}}}],["ngoninit",{"_index":134,"title":{},"body":{"index.html":{}}}],["noninfring",{"_index":201,"title":{},"body":{"license.html":{}}}],["notic",{"_index":189,"title":{},"body":{"license.html":{}}}],["npm",{"_index":114,"title":{},"body":{"index.html":{}}}],["number",{"_index":128,"title":{},"body":{"index.html":{}}}],["object",{"_index":233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obtain",{"_index":166,"title":{},"body":{"license.html":{}}}],["offic",{"_index":146,"title":{},"body":{"index.html":{}}}],["offici",{"_index":103,"title":{},"body":{"index.html":{}}}],["origin",{"_index":132,"title":{},"body":{"index.html":{}}}],["otherwis",{"_index":213,"title":{},"body":{"license.html":{}}}],["out",{"_index":15,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"license.html":{},"overview.html":{}}}],["overview",{"_index":219,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["packag",{"_index":92,"title":{"dependencies.html":{}},"body":{}}],["particular",{"_index":199,"title":{},"body":{"license.html":{}}}],["peer",{"_index":97,"title":{},"body":{"dependencies.html":{}}}],["permiss",{"_index":160,"title":{},"body":{"license.html":{}}}],["permit",{"_index":183,"title":{},"body":{"license.html":{}}}],["person",{"_index":165,"title":{},"body":{"license.html":{}}}],["playground",{"_index":108,"title":{},"body":{"index.html":{}}}],["playground/.../environment.prod.t",{"_index":224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../environment.t",{"_index":225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../test.t",{"_index":223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/e2e/src/app.po.t",{"_index":50,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["playground/e2e/src/app.po.ts:4",{"_index":57,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/e2e/src/app.po.ts:8",{"_index":56,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/src/app/app.component.t",{"_index":79,"title":{},"body":{"coverage.html":{}}}],["playground/src/app/app.module.t",{"_index":39,"title":{},"body":{"modules/AppModule.html":{}}}],["playground/src/environments/environment.prod.t",{"_index":82,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/environments/environment.t",{"_index":84,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/test.t",{"_index":85,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":192,"title":{},"body":{"license.html":{}}}],["presidenti",{"_index":145,"title":{},"body":{"index.html":{}}}],["product",{"_index":234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protractor",{"_index":59,"title":{},"body":{"classes/AppPage.html":{}}}],["provid",{"_index":6,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["public",{"_index":126,"title":{},"body":{"index.html":{}}}],["publish",{"_index":178,"title":{},"body":{"license.html":{}}}],["purpos",{"_index":200,"title":{},"body":{"license.html":{}}}],["read",{"_index":110,"title":{},"body":{"index.html":{}}}],["requir",{"_index":87,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["require.context",{"_index":230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reset",{"_index":14,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["restrict",{"_index":172,"title":{},"body":{"license.html":{}}}],["result",{"_index":31,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["return",{"_index":30,"title":{},"body":{"modules/AgmDirectionModule.html":{},"classes/AppPage.html":{}}}],["right",{"_index":175,"title":{},"body":{"license.html":{}}}],["robbi",{"_index":159,"title":{},"body":{"license.html":{}}}],["root",{"_index":62,"title":{},"body":{"classes/AppPage.html":{}}}],["save",{"_index":116,"title":{},"body":{"index.html":{}}}],["sell",{"_index":182,"title":{},"body":{"license.html":{}}}],["shall",{"_index":190,"title":{},"body":{"license.html":{}}}],["softwar",{"_index":168,"title":{},"body":{"license.html":{}}}],["sourc",{"_index":17,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["spec\\.t",{"_index":232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../agm",{"_index":226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/directive/agm",{"_index":88,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/modules/agm",{"_index":19,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["start",{"_index":101,"title":{"index.html":{},"license.html":{}},"body":{"index.html":{}}}],["starter",{"_index":153,"title":{},"body":{"index.html":{}}}],["statement",{"_index":68,"title":{},"body":{"coverage.html":{}}}],["static",{"_index":28,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["station",{"_index":143,"title":{},"body":{"index.html":{}}}],["subject",{"_index":185,"title":{},"body":{"license.html":{}}}],["sublicens",{"_index":180,"title":{},"body":{"license.html":{}}}],["substanti",{"_index":191,"title":{},"body":{"license.html":{}}}],["support",{"_index":216,"title":{},"body":{"modules.html":{}}}],["svg",{"_index":217,"title":{},"body":{"modules.html":{}}}],["tabl",{"_index":91,"title":{},"body":{"coverage.html":{}}}],["tablesort(document.getelementbyid('coverag",{"_index":90,"title":{},"body":{"coverage.html":{}}}],["taipei",{"_index":141,"title":{},"body":{"index.html":{}}}],["taiwan",{"_index":144,"title":{},"body":{"index.html":{}}}],["this.destin",{"_index":138,"title":{},"body":{"index.html":{}}}],["this.getdirect",{"_index":135,"title":{},"body":{"index.html":{}}}],["this.origin",{"_index":137,"title":{},"body":{"index.html":{}}}],["tort",{"_index":212,"title":{},"body":{"license.html":{}}}],["true",{"_index":231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ts",{"_index":125,"title":{},"body":{"index.html":{}}}],["tslib",{"_index":95,"title":{},"body":{"dependencies.html":{}}}],["type",{"_index":66,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["us",{"_index":113,"title":{},"body":{"index.html":{},"license.html":{}}}],["usag",{"_index":120,"title":{},"body":{"index.html":{}}}],["use?👉",{"_index":109,"title":{},"body":{"index.html":{}}}],["valu",{"_index":229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["variabl",{"_index":74,"title":{"miscellaneous/variables.html":{}},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["warranti",{"_index":193,"title":{},"body":{"license.html":{}}}],["whether",{"_index":209,"title":{},"body":{"license.html":{}}}],["without",{"_index":171,"title":{},"body":{"license.html":{}}}],["x1f449",{"_index":150,"title":{},"body":{"index.html":{}}}],["x1f4e6",{"_index":117,"title":{},"body":{"index.html":{}}}],["zoom",{"_index":13,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
- "store": {"modules/AgmDirectionModule.html":{"url":"modules/AgmDirectionModule.html","title":"module - AgmDirectionModule","body":"\n \n\n\n\n\n Modules\n AgmDirectionModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/modules/agm-direction.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AgmDirection\n \n \n \n \n Exports\n \n \n AgmDirection\n \n \n \n \n \n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { AgmDirection } from '../directive/agm-direction.directive';\n\n// export * from '../directive/agm-direction.directive';\n\n@NgModule({\n imports: [],\n declarations: [\n AgmDirection,\n ],\n exports: [\n AgmDirection,\n ]\n})\nexport class AgmDirectionModule {\n static forRoot(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n playground/src/app/app.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Imports\n \n \n AgmDirectionModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core';\nimport { AgmDirectionModule } from '../../../dist';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({\n apiKey: '',\n }),\n AgmDirectionModule,\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n \n File\n \n \n playground/e2e/src/app.po.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getParagraphText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getParagraphText\n \n \n \n \n \n \n \ngetParagraphText()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:8\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:4\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n navigateTo() {\n return browser.get('/');\n }\n\n getParagraphText() {\n return element(by.css('app-root h1')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n dist/package/src/directive/agm-direction.directive.ts\n \n \n directive\n \n \n AgmDirection\n \n \n 13 %\n (4/30)\n \n \n \n \n \n dist/package/src/directive/agm-direction.directive.ts\n \n \n variable\n \n \n google\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/e2e/src/app.po.ts\n \n \n class\n \n \n AppPage\n \n \n 0 %\n (0/3)\n \n \n \n \n \n playground/src/app/app.component.ts\n \n \n component\n \n \n AppComponent\n \n \n 0 %\n (0/12)\n \n \n \n \n \n playground/src/environments/environment.prod.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/environments/environment.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n context\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n require\n \n \n 0 %\n (0/1)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n directive\n \n \n AgmDirection\n \n \n 13 %\n (4/30)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n variable\n \n \n google\n \n \n 0 %\n (0/1)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @agm/core : ^1.0.0-beta.3\n \n tslib : ^1.9.0\n \n\n\n \n \n Peer Dependencies\n \n \n \n @angular/common : >= 6.0.0\n \n @angular/core : >= 6.0.0\n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nAgm-Direction\n\n\n\n\n\n\nAgm-Direction is the directive for @agm/core (not official)\n\nAngular 2+\nGoogle Map API\nPlayground \n\nHow to use?👉 Start Reading\n\nInstallation\nInstallation is done using the\nnpm install command:\n\nInstall @agm/core\nnpm install --save @agm/core\nInstall agm-direction\nnpm install --save agm-direction\n\nImporting Modules\n📦 @agm/core📦 agm-direction \nimport { BrowserModule } from '@angular/platform-browser'\nimport { NgModule } from '@angular/core'\nimport { AppComponent } from './app.component'\n\nimport { AgmCoreModule } from '@agm/core' // @agm/core\nimport { AgmDirectionModule } from 'agm-direction' // agm-direction\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({ // @agm/core\n apiKey: 'your key',\n }),\n AgmDirectionModule, // agm-direction\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Usage\nHTML\n\n \n \nCSS\nagm-map {\n height: 400px;\n}TS\npublic lat: Number = 24.799448\npublic lng: Number = 120.979021\n\npublic origin: any\npublic destination: any\n\nngOnInit() {\n this.getDirection()\n}\n\ngetDirection() {\n this.origin = { lat: 24.799448, lng: 120.979021 }\n this.destination = { lat: 24.799524, lng: 120.975017 }\n\n // this.origin = 'Taipei Main Station'\n // this.destination = 'Taiwan Presidential Office'\n}Document\n\nDocument Agm-Direction-Docs\nLess useful AgmDirectionModule\n\nDevelopment\n👉 Playground\nGenerator\nThis library generated by angular-library-starter.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2018 Robby\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n\n \n \n \n \n \n \n 3 modules\n \n \n \n \n \n \n \n \n 1 component\n \n \n \n \n \n \n \n 2 directives\n \n \n \n \n \n \n \n 1 class\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n context (playground/.../test.ts)\n \n \n environment (playground/.../environment.prod.ts)\n \n \n environment (playground/.../environment.ts)\n \n \n google (src/.../agm-direction.directive.ts)\n \n \n google (dist/.../agm-direction.directive.ts)\n \n \n require (playground/.../test.ts)\n \n \n \n \n \n \n\n\n playground/src/test.ts\n \n \n \n \n \n \n \n \n context\n \n \n \n \n \n \n \n context: \n\n \n \n \n \n Default value : require.context('./', true, /\\.spec\\.ts$/)\n \n \n\n\n \n \n \n \n \n \n \n \n \n require\n \n \n \n \n \n \n \n require: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n playground/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true\n}\n \n \n\n\n \n \n\n playground/src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false\n}\n \n \n\n\n \n \n\n src/directive/agm-direction.directive.ts\n \n \n \n \n \n \n \n \n google\n \n \n \n \n \n \n \n google: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n dist/package/src/directive/agm-direction.directive.ts\n \n \n \n \n \n \n \n \n google\n \n \n \n \n \n \n \n google: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
+ "index": {"version":"2.1.6","fields":["title","body"],"fieldVectors":[["title/modules/AgmDirectionModule.html",[0,0.277,1,0.565]],["body/modules/AgmDirectionModule.html",[0,0.34,1,0.991,2,0.652,3,1.077,4,1.359,5,0.84,6,0.652,7,1.203,8,1.393,9,1.393,10,1.393,11,2.266,12,0.096,13,1.508,14,1.077,15,0.84,16,1.077,17,1.077,18,0.652,19,1.873,20,1.873,21,1.359,22,1.741,23,2.625,24,0.84,25,2.625,26,2.625,27,0.36,28,1.873,29,1.873,30,1.393,31,0.061,32,0.061]],["title/modules/AppModule.html",[0,0.277,33,0.744]],["body/modules/AppModule.html",[0,0.317,1,0.917,2,0.592,3,0.979,4,1.29,5,1.29,6,0.853,7,0.853,12,0.097,13,1.41,14,0.979,15,0.764,16,0.979,17,0.979,18,0.592,21,1.643,22,1.41,24,0.764,27,0.327,31,0.057,32,0.057,33,1.298,34,1.266,35,1.266,36,1.703,37,1.266,38,1.738,39,1.703,40,1.824,41,1.266,42,0.764,43,2.453,44,1.703,45,1.266,46,1.266,47,0.979,48,1.703,49,1.266,50,1.266]],["title/classes/AppPage.html",[27,0.411,51,1.229]],["body/classes/AppPage.html",[7,0.799,12,0.095,16,1.321,17,1.321,18,0.799,21,1.031,27,0.58,30,2.657,31,0.07,32,0.07,42,1.031,51,1.733,52,1.709,53,1.321,54,3.015,55,3.573,56,3.573,57,3.015,58,2.298,59,2.298,60,2.298,61,2.298,62,2.298,63,2.298,64,2.298,65,2.298]],["title/coverage.html",[66,2.137]],["body/coverage.html",[11,1.223,12,0.093,18,0.74,27,0.409,31,0.067,32,0.067,38,0.955,51,1.223,52,1.582,66,1.582,67,1.223,68,1.582,69,2.128,70,2.128,71,3.807,72,2.128,73,2.128,74,1.582,75,2.128,76,1.582,77,2.079,78,2.131,79,3.617,80,1.582,81,2.131,82,1.582,83,1.582,84,2.131,85,2.131,86,1.223,87,2.128,88,2.128,89,1.223,90,2.128,91,2.128,92,2.128]],["title/dependencies.html",[2,0.89,93,1.808]],["body/dependencies.html",[2,1.182,12,0.095,24,1.244,31,0.079,32,0.079,47,1.594,94,2.773,95,2.773,96,2.773,97,2.773,98,2.773,99,2.773,100,3.397]],["title/index.html",[53,1.039,101,1.344,102,1.039]],["body/index.html",[0,0.164,1,0.636,4,0.568,5,0.568,6,0.44,7,0.44,12,0.096,21,1.455,22,1.129,24,0.568,27,0.243,31,0.046,32,0.046,33,0.44,38,1.08,40,1.461,41,0.941,42,0.568,45,0.941,46,0.941,47,1.786,49,0.941,50,0.941,67,1.129,86,2.022,89,0.728,102,0.728,103,3.517,104,1.266,105,1.965,106,0.941,107,1.965,108,1.266,109,1.965,110,1.266,111,1.266,112,3.243,113,1.266,114,1.461,115,2.407,116,1.266,117,1.965,118,1.266,119,1.266,120,1.266,121,1.266,122,1.266,123,1.266,124,1.266,125,1.266,126,1.266,127,2.713,128,2.407,129,1.965,130,1.965,131,2.407,132,1.965,133,1.266,134,1.266,135,1.266,136,1.266,137,1.266,138,1.965,139,1.965,140,1.266,141,1.266,142,1.266,143,1.266,144,1.266,145,1.266,146,1.266,147,1.266,148,1.266,149,1.266,150,1.266,151,1.266,152,1.965,153,1.965,154,1.266,155,0.728,156,0.941]],["title/license.html",[101,1.344,102,1.039,155,1.039]],["body/license.html",[6,0.624,12,0.059,15,0.804,18,0.624,31,0.059,32,0.059,67,1.03,114,1.892,155,1.03,156,1.333,157,2.958,158,1.792,159,1.792,160,1.792,161,2.544,162,1.792,163,1.792,164,1.792,165,1.792,166,2.544,167,1.792,168,3.22,169,3.777,170,1.792,171,2.544,172,2.958,173,1.792,174,2.958,175,2.544,176,1.792,177,1.792,178,1.792,179,1.792,180,1.792,181,1.792,182,1.792,183,1.792,184,1.792,185,1.792,186,1.792,187,1.792,188,1.792,189,1.792,190,2.544,191,2.544,192,1.792,193,1.792,194,2.544,195,1.792,196,1.792,197,1.792,198,1.792,199,1.792,200,1.792,201,1.792,202,1.792,203,1.792,204,1.792,205,1.792,206,1.792,207,1.792,208,1.792,209,1.792,210,1.792,211,1.792,212,1.792,213,1.792,214,1.792,215,1.792,216,1.792]],["title/modules.html",[0,0.372]],["body/modules.html",[0,0.378,1,0.772,12,0.082,31,0.082,32,0.082,33,1.017,42,1.574,217,3.508,218,3.508,219,3.508]],["title/overview.html",[220,2.137]],["body/overview.html",[0,0.372,1,0.985,2,0.745,3,1.23,4,0.96,5,0.96,6,0.745,7,0.745,8,1.592,9,1.592,10,1.592,11,2.191,12,0.089,13,1.653,14,1.23,15,0.96,27,0.411,31,0.067,32,0.067,33,1.326,34,1.592,35,1.592,37,1.592,38,1.71,74,1.592,86,1.23,106,1.592,220,1.592,221,3.248]],["title/miscellaneous/variables.html",[77,1.471,222,1.344]],["body/miscellaneous/variables.html",[12,0.094,31,0.066,32,0.066,53,1.209,68,2.565,76,1.565,77,1.209,78,2.761,80,1.565,81,1.565,82,2.395,83,2.395,84,1.565,85,2.114,89,1.851,222,1.565,223,2.843,224,2.104,225,2.104,226,2.104,227,3.221,228,3.221,229,2.104,230,2.843,231,2.104,232,3.449,233,2.843,234,2.104]]],"invertedIndex":[["",{"_index":12,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":71,"title":{},"body":{"coverage.html":{}}}],["0/1",{"_index":79,"title":{},"body":{"coverage.html":{}}}],["0/13",{"_index":75,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":72,"title":{},"body":{"coverage.html":{}}}],["1",{"_index":221,"title":{},"body":{"overview.html":{}}}],["1.0.0",{"_index":94,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":97,"title":{},"body":{"dependencies.html":{}}}],["12",{"_index":87,"title":{},"body":{"coverage.html":{}}}],["120.975017",{"_index":141,"title":{},"body":{"index.html":{}}}],["120.979021",{"_index":132,"title":{},"body":{"index.html":{}}}],["2",{"_index":106,"title":{},"body":{"index.html":{},"overview.html":{}}}],["2018",{"_index":159,"title":{},"body":{"license.html":{}}}],["24.799448",{"_index":130,"title":{},"body":{"index.html":{}}}],["24.799524",{"_index":140,"title":{},"body":{"index.html":{}}}],["4/31",{"_index":88,"title":{},"body":{"coverage.html":{}}}],["400px",{"_index":125,"title":{},"body":{"index.html":{}}}],["6.0.0",{"_index":100,"title":{},"body":{"dependencies.html":{}}}],["abov",{"_index":189,"title":{},"body":{"license.html":{}}}],["action",{"_index":211,"title":{},"body":{"license.html":{}}}],["agm",{"_index":103,"title":{},"body":{"index.html":{}}}],["agm/cor",{"_index":47,"title":{},"body":{"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["agm/core📦",{"_index":119,"title":{},"body":{"index.html":{}}}],["agmcoremodul",{"_index":46,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmcoremodule.forroot",{"_index":49,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmdirect",{"_index":11,"title":{},"body":{"modules/AgmDirectionModule.html":{},"coverage.html":{},"overview.html":{}}}],["agmdirectionmodul",{"_index":1,"title":{"modules/AgmDirectionModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["and/or",{"_index":182,"title":{},"body":{"license.html":{}}}],["angular",{"_index":105,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":99,"title":{},"body":{"dependencies.html":{}}}],["angular/cor",{"_index":24,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/http",{"_index":44,"title":{},"body":{"modules/AppModule.html":{}}}],["angular/platform",{"_index":41,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["api",{"_index":108,"title":{},"body":{"index.html":{}}}],["apikey",{"_index":50,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app.compon",{"_index":45,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["appcompon",{"_index":38,"title":{},"body":{"modules/AppModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["appmodul",{"_index":33,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["apppag",{"_index":51,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["aris",{"_index":215,"title":{},"body":{"license.html":{}}}],["associ",{"_index":170,"title":{},"body":{"license.html":{}}}],["author",{"_index":204,"title":{},"body":{"license.html":{}}}],["beta.3",{"_index":95,"title":{},"body":{"dependencies.html":{}}}],["bootstrap",{"_index":5,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["brows",{"_index":219,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":42,"title":{},"body":{"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"modules.html":{}}}],["browser.get",{"_index":62,"title":{},"body":{"classes/AppPage.html":{}}}],["browsermodul",{"_index":40,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["c",{"_index":158,"title":{},"body":{"license.html":{}}}],["charg",{"_index":165,"title":{},"body":{"license.html":{}}}],["claim",{"_index":207,"title":{},"body":{"license.html":{}}}],["class",{"_index":27,"title":{"classes/AppPage.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["cluster_agmdirectionmodul",{"_index":8,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_declar",{"_index":9,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_export",{"_index":10,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_appmodul",{"_index":34,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":37,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declar",{"_index":35,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_import",{"_index":36,"title":{},"body":{"modules/AppModule.html":{}}}],["command",{"_index":116,"title":{},"body":{"index.html":{}}}],["compon",{"_index":74,"title":{},"body":{"coverage.html":{},"overview.html":{}}}],["condit",{"_index":188,"title":{},"body":{"license.html":{}}}],["connect",{"_index":216,"title":{},"body":{"license.html":{}}}],["context",{"_index":82,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["contract",{"_index":212,"title":{},"body":{"license.html":{}}}],["copi",{"_index":168,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":157,"title":{},"body":{"license.html":{}}}],["coverag",{"_index":66,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["css",{"_index":123,"title":{},"body":{"index.html":{}}}],["damag",{"_index":208,"title":{},"body":{"license.html":{}}}],["deal",{"_index":171,"title":{},"body":{"license.html":{}}}],["declar",{"_index":4,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["default",{"_index":227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["defin",{"_index":57,"title":{},"body":{"classes/AppPage.html":{}}}],["depend",{"_index":2,"title":{"dependencies.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"overview.html":{}}}],["destin",{"_index":134,"title":{},"body":{"index.html":{}}}],["develop",{"_index":150,"title":{},"body":{"index.html":{}}}],["direct",{"_index":86,"title":{},"body":{"coverage.html":{},"index.html":{},"overview.html":{}}}],["direction.direct",{"_index":26,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.directive.t",{"_index":85,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["direction.module.t",{"_index":20,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directive/agm",{"_index":25,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["dist",{"_index":48,"title":{},"body":{"modules/AppModule.html":{}}}],["distribut",{"_index":180,"title":{},"body":{"license.html":{}}}],["doc",{"_index":148,"title":{},"body":{"index.html":{}}}],["document",{"_index":67,"title":{},"body":{"coverage.html":{},"index.html":{},"license.html":{}}}],["done",{"_index":113,"title":{},"body":{"index.html":{}}}],["element",{"_index":60,"title":{},"body":{"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":63,"title":{},"body":{"classes/AppPage.html":{}}}],["environ",{"_index":78,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["event",{"_index":203,"title":{},"body":{"license.html":{}}}],["export",{"_index":7,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"overview.html":{}}}],["express",{"_index":196,"title":{},"body":{"license.html":{}}}],["fals",{"_index":234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["file",{"_index":18,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"license.html":{}}}],["fit",{"_index":199,"title":{},"body":{"license.html":{}}}],["follow",{"_index":187,"title":{},"body":{"license.html":{}}}],["forroot",{"_index":29,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["free",{"_index":164,"title":{},"body":{"license.html":{}}}],["furnish",{"_index":185,"title":{},"body":{"license.html":{}}}],["gener",{"_index":152,"title":{},"body":{"index.html":{}}}],["get",{"_index":101,"title":{"index.html":{},"license.html":{}},"body":{}}],["getdirect",{"_index":137,"title":{},"body":{"index.html":{}}}],["getparagraphtext",{"_index":55,"title":{},"body":{"classes/AppPage.html":{}}}],["googl",{"_index":89,"title":{},"body":{"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["grant",{"_index":163,"title":{},"body":{"license.html":{}}}],["h1')).gettext",{"_index":65,"title":{},"body":{"classes/AppPage.html":{}}}],["height",{"_index":124,"title":{},"body":{"index.html":{}}}],["herebi",{"_index":162,"title":{},"body":{"license.html":{}}}],["holder",{"_index":205,"title":{},"body":{"license.html":{}}}],["html",{"_index":122,"title":{},"body":{"index.html":{}}}],["httpmodul",{"_index":43,"title":{},"body":{"modules/AppModule.html":{}}}],["identifi",{"_index":69,"title":{},"body":{"coverage.html":{}}}],["impli",{"_index":197,"title":{},"body":{"license.html":{}}}],["import",{"_index":21,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["includ",{"_index":174,"title":{},"body":{"license.html":{}}}],["index",{"_index":53,"title":{"index.html":{}},"body":{"classes/AppPage.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":16,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["instal",{"_index":112,"title":{},"body":{"index.html":{}}}],["key",{"_index":120,"title":{},"body":{"index.html":{}}}],["kind",{"_index":195,"title":{},"body":{"license.html":{}}}],["lat",{"_index":128,"title":{},"body":{"index.html":{}}}],["legend",{"_index":3,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["less",{"_index":149,"title":{},"body":{"index.html":{}}}],["liabil",{"_index":209,"title":{},"body":{"license.html":{}}}],["liabl",{"_index":206,"title":{},"body":{"license.html":{}}}],["librari",{"_index":153,"title":{},"body":{"index.html":{}}}],["licens",{"_index":155,"title":{"license.html":{}},"body":{"index.html":{},"license.html":{}}}],["limit",{"_index":175,"title":{},"body":{"license.html":{}}}],["lng",{"_index":131,"title":{},"body":{"index.html":{}}}],["main",{"_index":143,"title":{},"body":{"index.html":{}}}],["map",{"_index":107,"title":{},"body":{"index.html":{}}}],["match",{"_index":32,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["merchant",{"_index":198,"title":{},"body":{"license.html":{}}}],["merg",{"_index":178,"title":{},"body":{"license.html":{}}}],["method",{"_index":54,"title":{},"body":{"classes/AppPage.html":{}}}],["miscellan",{"_index":222,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["mit",{"_index":156,"title":{},"body":{"index.html":{},"license.html":{}}}],["modifi",{"_index":177,"title":{},"body":{"license.html":{}}}],["modul",{"_index":0,"title":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"modules.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["modulewithprovid",{"_index":23,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["navigateto",{"_index":56,"title":{},"body":{"classes/AppPage.html":{}}}],["new",{"_index":90,"title":{},"body":{"coverage.html":{}}}],["ngmodul",{"_index":22,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{}}}],["ngoninit",{"_index":135,"title":{},"body":{"index.html":{}}}],["noninfring",{"_index":202,"title":{},"body":{"license.html":{}}}],["notic",{"_index":190,"title":{},"body":{"license.html":{}}}],["npm",{"_index":115,"title":{},"body":{"index.html":{}}}],["number",{"_index":129,"title":{},"body":{"index.html":{}}}],["object",{"_index":232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obtain",{"_index":167,"title":{},"body":{"license.html":{}}}],["offic",{"_index":147,"title":{},"body":{"index.html":{}}}],["offici",{"_index":104,"title":{},"body":{"index.html":{}}}],["origin",{"_index":133,"title":{},"body":{"index.html":{}}}],["otherwis",{"_index":214,"title":{},"body":{"license.html":{}}}],["out",{"_index":15,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"license.html":{},"overview.html":{}}}],["overview",{"_index":220,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["packag",{"_index":93,"title":{"dependencies.html":{}},"body":{}}],["particular",{"_index":200,"title":{},"body":{"license.html":{}}}],["peer",{"_index":98,"title":{},"body":{"dependencies.html":{}}}],["permiss",{"_index":161,"title":{},"body":{"license.html":{}}}],["permit",{"_index":184,"title":{},"body":{"license.html":{}}}],["person",{"_index":166,"title":{},"body":{"license.html":{}}}],["playground",{"_index":109,"title":{},"body":{"index.html":{}}}],["playground/.../environment.prod.t",{"_index":224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../environment.t",{"_index":225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../test.t",{"_index":223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/e2e/src/app.po.t",{"_index":52,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["playground/e2e/src/app.po.ts:4",{"_index":59,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/e2e/src/app.po.ts:8",{"_index":58,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/src/app/app.component.t",{"_index":73,"title":{},"body":{"coverage.html":{}}}],["playground/src/app/app.module.t",{"_index":39,"title":{},"body":{"modules/AppModule.html":{}}}],["playground/src/environments/environment.prod.t",{"_index":76,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/environments/environment.t",{"_index":80,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/test.t",{"_index":81,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":193,"title":{},"body":{"license.html":{}}}],["presidenti",{"_index":146,"title":{},"body":{"index.html":{}}}],["product",{"_index":233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protractor",{"_index":61,"title":{},"body":{"classes/AppPage.html":{}}}],["provid",{"_index":6,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["public",{"_index":127,"title":{},"body":{"index.html":{}}}],["publish",{"_index":179,"title":{},"body":{"license.html":{}}}],["purpos",{"_index":201,"title":{},"body":{"license.html":{}}}],["read",{"_index":111,"title":{},"body":{"index.html":{}}}],["requir",{"_index":83,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["require.context",{"_index":229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reset",{"_index":14,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["restrict",{"_index":173,"title":{},"body":{"license.html":{}}}],["result",{"_index":31,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["return",{"_index":30,"title":{},"body":{"modules/AgmDirectionModule.html":{},"classes/AppPage.html":{}}}],["right",{"_index":176,"title":{},"body":{"license.html":{}}}],["robbi",{"_index":160,"title":{},"body":{"license.html":{}}}],["root",{"_index":64,"title":{},"body":{"classes/AppPage.html":{}}}],["save",{"_index":117,"title":{},"body":{"index.html":{}}}],["sell",{"_index":183,"title":{},"body":{"license.html":{}}}],["shall",{"_index":191,"title":{},"body":{"license.html":{}}}],["softwar",{"_index":169,"title":{},"body":{"license.html":{}}}],["sourc",{"_index":17,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["spec\\.t",{"_index":231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../agm",{"_index":226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/directive/agm",{"_index":84,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/modules/agm",{"_index":19,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["start",{"_index":102,"title":{"index.html":{},"license.html":{}},"body":{"index.html":{}}}],["starter",{"_index":154,"title":{},"body":{"index.html":{}}}],["statement",{"_index":70,"title":{},"body":{"coverage.html":{}}}],["static",{"_index":28,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["station",{"_index":144,"title":{},"body":{"index.html":{}}}],["subject",{"_index":186,"title":{},"body":{"license.html":{}}}],["sublicens",{"_index":181,"title":{},"body":{"license.html":{}}}],["substanti",{"_index":192,"title":{},"body":{"license.html":{}}}],["support",{"_index":217,"title":{},"body":{"modules.html":{}}}],["svg",{"_index":218,"title":{},"body":{"modules.html":{}}}],["tabl",{"_index":92,"title":{},"body":{"coverage.html":{}}}],["tablesort(document.getelementbyid('coverag",{"_index":91,"title":{},"body":{"coverage.html":{}}}],["taipei",{"_index":142,"title":{},"body":{"index.html":{}}}],["taiwan",{"_index":145,"title":{},"body":{"index.html":{}}}],["this.destin",{"_index":139,"title":{},"body":{"index.html":{}}}],["this.getdirect",{"_index":136,"title":{},"body":{"index.html":{}}}],["this.origin",{"_index":138,"title":{},"body":{"index.html":{}}}],["tort",{"_index":213,"title":{},"body":{"license.html":{}}}],["true",{"_index":230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ts",{"_index":126,"title":{},"body":{"index.html":{}}}],["tslib",{"_index":96,"title":{},"body":{"dependencies.html":{}}}],["type",{"_index":68,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["us",{"_index":114,"title":{},"body":{"index.html":{},"license.html":{}}}],["usag",{"_index":121,"title":{},"body":{"index.html":{}}}],["use?👉",{"_index":110,"title":{},"body":{"index.html":{}}}],["valu",{"_index":228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["variabl",{"_index":77,"title":{"miscellaneous/variables.html":{}},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["warranti",{"_index":194,"title":{},"body":{"license.html":{}}}],["whether",{"_index":210,"title":{},"body":{"license.html":{}}}],["without",{"_index":172,"title":{},"body":{"license.html":{}}}],["x1f449",{"_index":151,"title":{},"body":{"index.html":{}}}],["x1f4e6",{"_index":118,"title":{},"body":{"index.html":{}}}],["zoom",{"_index":13,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
+ "store": {"modules/AgmDirectionModule.html":{"url":"modules/AgmDirectionModule.html","title":"module - AgmDirectionModule","body":"\n \n\n\n\n\n Modules\n AgmDirectionModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/modules/agm-direction.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AgmDirection\n \n \n \n \n Exports\n \n \n AgmDirection\n \n \n \n \n \n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { AgmDirection } from '../directive/agm-direction.directive';\n\n// export * from '../directive/agm-direction.directive';\n\n@NgModule({\n imports: [],\n declarations: [\n AgmDirection,\n ],\n exports: [\n AgmDirection,\n ]\n})\nexport class AgmDirectionModule {\n static forRoot(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n playground/src/app/app.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Imports\n \n \n AgmDirectionModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { HttpModule } from '@angular/http';\n\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core';\nimport { AgmDirectionModule } from '../../../dist';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n HttpModule,\n AgmCoreModule.forRoot({\n apiKey: '',\n }),\n AgmDirectionModule,\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n \n File\n \n \n playground/e2e/src/app.po.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getParagraphText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getParagraphText\n \n \n \n \n \n \n \ngetParagraphText()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:8\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:4\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n navigateTo() {\n return browser.get('/');\n }\n\n getParagraphText() {\n return element(by.css('app-root h1')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n playground/e2e/src/app.po.ts\n \n \n class\n \n \n AppPage\n \n \n 0 %\n (0/3)\n \n \n \n \n \n playground/src/app/app.component.ts\n \n \n component\n \n \n AppComponent\n \n \n 0 %\n (0/13)\n \n \n \n \n \n playground/src/environments/environment.prod.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/environments/environment.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n context\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n require\n \n \n 0 %\n (0/1)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n directive\n \n \n AgmDirection\n \n \n 12 %\n (4/31)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n variable\n \n \n google\n \n \n 0 %\n (0/1)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @agm/core : ^1.0.0-beta.3\n \n tslib : ^1.9.0\n \n\n\n \n \n Peer Dependencies\n \n \n \n @angular/common : >= 6.0.0\n \n @angular/core : >= 6.0.0\n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nAgm-Direction\n\n\n\n\n\n\nAgm-Direction is the directive for @agm/core (not official)\n\nAngular 2+\nGoogle Map API\nPlayground \n\nHow to use?👉 Start Reading\n\nInstallation\nInstallation is done using the\nnpm install command:\n\nInstall @agm/core\nnpm install --save @agm/core\nInstall agm-direction\nnpm install --save agm-direction\n\nImporting Modules\n📦 @agm/core📦 agm-direction \nimport { BrowserModule } from '@angular/platform-browser'\nimport { NgModule } from '@angular/core'\nimport { AppComponent } from './app.component'\n\nimport { AgmCoreModule } from '@agm/core' // @agm/core\nimport { AgmDirectionModule } from 'agm-direction' // agm-direction\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({ // @agm/core\n apiKey: 'your key',\n }),\n AgmDirectionModule, // agm-direction\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Usage\nHTML\n\n \n \nCSS\nagm-map {\n height: 400px;\n}TS\npublic lat: Number = 24.799448\npublic lng: Number = 120.979021\n\npublic origin: any\npublic destination: any\n\nngOnInit() {\n this.getDirection()\n}\n\ngetDirection() {\n this.origin = { lat: 24.799448, lng: 120.979021 }\n this.destination = { lat: 24.799524, lng: 120.975017 }\n\n // this.origin = 'Taipei Main Station'\n // this.destination = 'Taiwan Presidential Office'\n}Document\n\nDocument Agm-Direction-Docs\nLess useful AgmDirectionModule\n\nDevelopment\n👉 Playground\nGenerator\nThis library generated by angular-library-starter.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2018 Robby\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n\n \n \n \n \n \n \n 2 modules\n \n \n \n \n \n \n \n \n 1 component\n \n \n \n \n \n \n \n 1 directive\n \n \n \n \n \n \n \n 1 class\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n context (playground/.../test.ts)\n \n \n environment (playground/.../environment.prod.ts)\n \n \n environment (playground/.../environment.ts)\n \n \n google (src/.../agm-direction.directive.ts)\n \n \n require (playground/.../test.ts)\n \n \n \n \n \n \n\n\n playground/src/test.ts\n \n \n \n \n \n \n \n \n context\n \n \n \n \n \n \n \n context: \n\n \n \n \n \n Default value : require.context('./', true, /\\.spec\\.ts$/)\n \n \n\n\n \n \n \n \n \n \n \n \n \n require\n \n \n \n \n \n \n \n require: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n playground/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true\n}\n \n \n\n\n \n \n\n playground/src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false\n}\n \n \n\n\n \n \n\n src/directive/agm-direction.directive.ts\n \n \n \n \n \n \n \n \n google\n \n \n \n \n \n \n \n google: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
}
diff --git a/docs/license.html b/docs/license.html
index b3193af..b7f2aed 100644
--- a/docs/license.html
+++ b/docs/license.html
@@ -80,33 +80,14 @@
AgmDirectionModule
-
-
-
- -
- AgmDirectionModule
-
-
-
-
-
AgmDirection
@@ -118,14 +99,14 @@
AppModule
-
- -
- AgmDirectionModule
-
-
-
-
AgmDirection
@@ -296,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/miscellaneous/variables.html b/docs/miscellaneous/variables.html
index 0631d1c..946a21c 100644
--- a/docs/miscellaneous/variables.html
+++ b/docs/miscellaneous/variables.html
@@ -80,33 +80,14 @@
AgmDirectionModule
-
-
-
- -
- AgmDirectionModule
-
-
-
-
-
AgmDirection
@@ -118,14 +99,14 @@
AppModule
-
- -
- AgmDirectionModule
-
-
-
-
-
AgmDirection
@@ -296,14 +258,14 @@
AppModule
-
-
AppComponent
@@ -410,9 +372,6 @@
Index
-
google (src/.../agm-direction.directive.ts)
- -
- google (dist/.../agm-direction.directive.ts)
-
-
require (playground/.../test.ts)
@@ -593,38 +552,6 @@
- dist/package/src/directive/agm-direction.directive.ts
-
-
-
-
-
-
-
-
- google
-
-
-
- |
-
-
-
- google: any
-
- |
-
-
-
- Type : any
-
- |
-
-
-
-
-
-
diff --git a/docs/modules.html b/docs/modules.html
index b2167c9..c69ca83 100644
--- a/docs/modules.html
+++ b/docs/modules.html
@@ -80,33 +80,14 @@
AgmDirectionModule
-
-
-
-
-
- AgmDirectionModule
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -539,7 +489,7 @@
-
2 directives
+
1 directive
From 55e5286ed3f7655377150b84f60349537bd99c53 Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:27:38 +0800
Subject: [PATCH 6/7] [refactor] export directive
---
src/modules/agm-direction.module.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/agm-direction.module.ts b/src/modules/agm-direction.module.ts
index d7b1f2b..e3b2931 100644
--- a/src/modules/agm-direction.module.ts
+++ b/src/modules/agm-direction.module.ts
@@ -1,7 +1,7 @@
import { NgModule, ModuleWithProviders } from '@angular/core';
import { AgmDirection } from '../directive/agm-direction.directive';
-// export * from '../directive/agm-direction.directive';
+export * from '../directive/agm-direction.directive';
@NgModule({
imports: [],
From 52f1de6e31ac0319fe7ac48222301a03f823d539 Mon Sep 17 00:00:00 2001
From: Robby
Date: Wed, 5 Sep 2018 19:28:18 +0800
Subject: [PATCH 7/7] [docs] update docs about new version 0.7.3
---
docs/classes/AppPage.html | 16 ++++++++--------
docs/components/AppComponent.html | 16 ++++++++--------
docs/coverage.html | 16 ++++++++--------
docs/dependencies.html | 16 ++++++++--------
docs/directives/AgmDirection.html | 16 ++++++++--------
docs/index.html | 16 ++++++++--------
docs/js/search/search_index.js | 4 ++--
docs/license.html | 16 ++++++++--------
docs/miscellaneous/variables.html | 16 ++++++++--------
docs/modules.html | 16 ++++++++--------
docs/modules/AgmDirectionModule.html | 18 +++++++++---------
docs/modules/AppModule.html | 16 ++++++++--------
docs/overview.html | 16 ++++++++--------
13 files changed, 99 insertions(+), 99 deletions(-)
diff --git a/docs/classes/AppPage.html b/docs/classes/AppPage.html
index 4a037ee..031f4c8 100644
--- a/docs/classes/AppPage.html
+++ b/docs/classes/AppPage.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -99,14 +99,14 @@
AppModule
-
-
AppComponent
@@ -239,14 +239,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -258,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/components/AppComponent.html b/docs/components/AppComponent.html
index a31e463..02c774d 100644
--- a/docs/components/AppComponent.html
+++ b/docs/components/AppComponent.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -99,14 +99,14 @@
AppModule
-
-
AppComponent
@@ -239,14 +239,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -258,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/coverage.html b/docs/coverage.html
index f63b189..5cce276 100644
--- a/docs/coverage.html
+++ b/docs/coverage.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -99,14 +99,14 @@
AppModule
-
-
AppComponent
@@ -239,14 +239,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -258,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/dependencies.html b/docs/dependencies.html
index 9c05f97..1bbf90b 100644
--- a/docs/dependencies.html
+++ b/docs/dependencies.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -99,14 +99,14 @@
AppModule
-
-
AppComponent
@@ -239,14 +239,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -258,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/directives/AgmDirection.html b/docs/directives/AgmDirection.html
index 73a5699..e7cdbd6 100644
--- a/docs/directives/AgmDirection.html
+++ b/docs/directives/AgmDirection.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -99,14 +99,14 @@
AppModule
-
-
AppComponent
@@ -239,14 +239,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -258,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/index.html b/docs/index.html
index 3b53505..387f94d 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -99,14 +99,14 @@
AppModule
-
-
AppComponent
@@ -239,14 +239,14 @@
AgmDirectionModule
-
-
AgmDirection
@@ -258,14 +258,14 @@
AppModule
-
-
AppComponent
diff --git a/docs/js/search/search_index.js b/docs/js/search/search_index.js
index 541ec97..9e771c4 100644
--- a/docs/js/search/search_index.js
+++ b/docs/js/search/search_index.js
@@ -1,4 +1,4 @@
var COMPODOC_SEARCH_INDEX = {
- "index": {"version":"2.1.6","fields":["title","body"],"fieldVectors":[["title/modules/AgmDirectionModule.html",[0,0.277,1,0.565]],["body/modules/AgmDirectionModule.html",[0,0.34,1,0.991,2,0.652,3,1.077,4,1.359,5,0.84,6,0.652,7,1.203,8,1.393,9,1.393,10,1.393,11,2.266,12,0.096,13,1.508,14,1.077,15,0.84,16,1.077,17,1.077,18,0.652,19,1.873,20,1.873,21,1.359,22,1.741,23,2.625,24,0.84,25,2.625,26,2.625,27,0.36,28,1.873,29,1.873,30,1.393,31,0.061,32,0.061]],["title/modules/AppModule.html",[0,0.277,33,0.744]],["body/modules/AppModule.html",[0,0.317,1,0.917,2,0.592,3,0.979,4,1.29,5,1.29,6,0.853,7,0.853,12,0.097,13,1.41,14,0.979,15,0.764,16,0.979,17,0.979,18,0.592,21,1.643,22,1.41,24,0.764,27,0.327,31,0.057,32,0.057,33,1.298,34,1.266,35,1.266,36,1.703,37,1.266,38,1.738,39,1.703,40,1.824,41,1.266,42,0.764,43,2.453,44,1.703,45,1.266,46,1.266,47,0.979,48,1.703,49,1.266,50,1.266]],["title/classes/AppPage.html",[27,0.411,51,1.229]],["body/classes/AppPage.html",[7,0.799,12,0.095,16,1.321,17,1.321,18,0.799,21,1.031,27,0.58,30,2.657,31,0.07,32,0.07,42,1.031,51,1.733,52,1.709,53,1.321,54,3.015,55,3.573,56,3.573,57,3.015,58,2.298,59,2.298,60,2.298,61,2.298,62,2.298,63,2.298,64,2.298,65,2.298]],["title/coverage.html",[66,2.137]],["body/coverage.html",[11,1.223,12,0.093,18,0.74,27,0.409,31,0.067,32,0.067,38,0.955,51,1.223,52,1.582,66,1.582,67,1.223,68,1.582,69,2.128,70,2.128,71,3.807,72,2.128,73,2.128,74,1.582,75,2.128,76,1.582,77,2.079,78,2.131,79,3.617,80,1.582,81,2.131,82,1.582,83,1.582,84,2.131,85,2.131,86,1.223,87,2.128,88,2.128,89,1.223,90,2.128,91,2.128,92,2.128]],["title/dependencies.html",[2,0.89,93,1.808]],["body/dependencies.html",[2,1.182,12,0.095,24,1.244,31,0.079,32,0.079,47,1.594,94,2.773,95,2.773,96,2.773,97,2.773,98,2.773,99,2.773,100,3.397]],["title/index.html",[53,1.039,101,1.344,102,1.039]],["body/index.html",[0,0.164,1,0.636,4,0.568,5,0.568,6,0.44,7,0.44,12,0.096,21,1.455,22,1.129,24,0.568,27,0.243,31,0.046,32,0.046,33,0.44,38,1.08,40,1.461,41,0.941,42,0.568,45,0.941,46,0.941,47,1.786,49,0.941,50,0.941,67,1.129,86,2.022,89,0.728,102,0.728,103,3.517,104,1.266,105,1.965,106,0.941,107,1.965,108,1.266,109,1.965,110,1.266,111,1.266,112,3.243,113,1.266,114,1.461,115,2.407,116,1.266,117,1.965,118,1.266,119,1.266,120,1.266,121,1.266,122,1.266,123,1.266,124,1.266,125,1.266,126,1.266,127,2.713,128,2.407,129,1.965,130,1.965,131,2.407,132,1.965,133,1.266,134,1.266,135,1.266,136,1.266,137,1.266,138,1.965,139,1.965,140,1.266,141,1.266,142,1.266,143,1.266,144,1.266,145,1.266,146,1.266,147,1.266,148,1.266,149,1.266,150,1.266,151,1.266,152,1.965,153,1.965,154,1.266,155,0.728,156,0.941]],["title/license.html",[101,1.344,102,1.039,155,1.039]],["body/license.html",[6,0.624,12,0.059,15,0.804,18,0.624,31,0.059,32,0.059,67,1.03,114,1.892,155,1.03,156,1.333,157,2.958,158,1.792,159,1.792,160,1.792,161,2.544,162,1.792,163,1.792,164,1.792,165,1.792,166,2.544,167,1.792,168,3.22,169,3.777,170,1.792,171,2.544,172,2.958,173,1.792,174,2.958,175,2.544,176,1.792,177,1.792,178,1.792,179,1.792,180,1.792,181,1.792,182,1.792,183,1.792,184,1.792,185,1.792,186,1.792,187,1.792,188,1.792,189,1.792,190,2.544,191,2.544,192,1.792,193,1.792,194,2.544,195,1.792,196,1.792,197,1.792,198,1.792,199,1.792,200,1.792,201,1.792,202,1.792,203,1.792,204,1.792,205,1.792,206,1.792,207,1.792,208,1.792,209,1.792,210,1.792,211,1.792,212,1.792,213,1.792,214,1.792,215,1.792,216,1.792]],["title/modules.html",[0,0.372]],["body/modules.html",[0,0.378,1,0.772,12,0.082,31,0.082,32,0.082,33,1.017,42,1.574,217,3.508,218,3.508,219,3.508]],["title/overview.html",[220,2.137]],["body/overview.html",[0,0.372,1,0.985,2,0.745,3,1.23,4,0.96,5,0.96,6,0.745,7,0.745,8,1.592,9,1.592,10,1.592,11,2.191,12,0.089,13,1.653,14,1.23,15,0.96,27,0.411,31,0.067,32,0.067,33,1.326,34,1.592,35,1.592,37,1.592,38,1.71,74,1.592,86,1.23,106,1.592,220,1.592,221,3.248]],["title/miscellaneous/variables.html",[77,1.471,222,1.344]],["body/miscellaneous/variables.html",[12,0.094,31,0.066,32,0.066,53,1.209,68,2.565,76,1.565,77,1.209,78,2.761,80,1.565,81,1.565,82,2.395,83,2.395,84,1.565,85,2.114,89,1.851,222,1.565,223,2.843,224,2.104,225,2.104,226,2.104,227,3.221,228,3.221,229,2.104,230,2.843,231,2.104,232,3.449,233,2.843,234,2.104]]],"invertedIndex":[["",{"_index":12,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":71,"title":{},"body":{"coverage.html":{}}}],["0/1",{"_index":79,"title":{},"body":{"coverage.html":{}}}],["0/13",{"_index":75,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":72,"title":{},"body":{"coverage.html":{}}}],["1",{"_index":221,"title":{},"body":{"overview.html":{}}}],["1.0.0",{"_index":94,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":97,"title":{},"body":{"dependencies.html":{}}}],["12",{"_index":87,"title":{},"body":{"coverage.html":{}}}],["120.975017",{"_index":141,"title":{},"body":{"index.html":{}}}],["120.979021",{"_index":132,"title":{},"body":{"index.html":{}}}],["2",{"_index":106,"title":{},"body":{"index.html":{},"overview.html":{}}}],["2018",{"_index":159,"title":{},"body":{"license.html":{}}}],["24.799448",{"_index":130,"title":{},"body":{"index.html":{}}}],["24.799524",{"_index":140,"title":{},"body":{"index.html":{}}}],["4/31",{"_index":88,"title":{},"body":{"coverage.html":{}}}],["400px",{"_index":125,"title":{},"body":{"index.html":{}}}],["6.0.0",{"_index":100,"title":{},"body":{"dependencies.html":{}}}],["abov",{"_index":189,"title":{},"body":{"license.html":{}}}],["action",{"_index":211,"title":{},"body":{"license.html":{}}}],["agm",{"_index":103,"title":{},"body":{"index.html":{}}}],["agm/cor",{"_index":47,"title":{},"body":{"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["agm/core📦",{"_index":119,"title":{},"body":{"index.html":{}}}],["agmcoremodul",{"_index":46,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmcoremodule.forroot",{"_index":49,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmdirect",{"_index":11,"title":{},"body":{"modules/AgmDirectionModule.html":{},"coverage.html":{},"overview.html":{}}}],["agmdirectionmodul",{"_index":1,"title":{"modules/AgmDirectionModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["and/or",{"_index":182,"title":{},"body":{"license.html":{}}}],["angular",{"_index":105,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":99,"title":{},"body":{"dependencies.html":{}}}],["angular/cor",{"_index":24,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/http",{"_index":44,"title":{},"body":{"modules/AppModule.html":{}}}],["angular/platform",{"_index":41,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["api",{"_index":108,"title":{},"body":{"index.html":{}}}],["apikey",{"_index":50,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app.compon",{"_index":45,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["appcompon",{"_index":38,"title":{},"body":{"modules/AppModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["appmodul",{"_index":33,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["apppag",{"_index":51,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["aris",{"_index":215,"title":{},"body":{"license.html":{}}}],["associ",{"_index":170,"title":{},"body":{"license.html":{}}}],["author",{"_index":204,"title":{},"body":{"license.html":{}}}],["beta.3",{"_index":95,"title":{},"body":{"dependencies.html":{}}}],["bootstrap",{"_index":5,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["brows",{"_index":219,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":42,"title":{},"body":{"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"modules.html":{}}}],["browser.get",{"_index":62,"title":{},"body":{"classes/AppPage.html":{}}}],["browsermodul",{"_index":40,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["c",{"_index":158,"title":{},"body":{"license.html":{}}}],["charg",{"_index":165,"title":{},"body":{"license.html":{}}}],["claim",{"_index":207,"title":{},"body":{"license.html":{}}}],["class",{"_index":27,"title":{"classes/AppPage.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["cluster_agmdirectionmodul",{"_index":8,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_declar",{"_index":9,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_export",{"_index":10,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_appmodul",{"_index":34,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":37,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declar",{"_index":35,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_import",{"_index":36,"title":{},"body":{"modules/AppModule.html":{}}}],["command",{"_index":116,"title":{},"body":{"index.html":{}}}],["compon",{"_index":74,"title":{},"body":{"coverage.html":{},"overview.html":{}}}],["condit",{"_index":188,"title":{},"body":{"license.html":{}}}],["connect",{"_index":216,"title":{},"body":{"license.html":{}}}],["context",{"_index":82,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["contract",{"_index":212,"title":{},"body":{"license.html":{}}}],["copi",{"_index":168,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":157,"title":{},"body":{"license.html":{}}}],["coverag",{"_index":66,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["css",{"_index":123,"title":{},"body":{"index.html":{}}}],["damag",{"_index":208,"title":{},"body":{"license.html":{}}}],["deal",{"_index":171,"title":{},"body":{"license.html":{}}}],["declar",{"_index":4,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["default",{"_index":227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["defin",{"_index":57,"title":{},"body":{"classes/AppPage.html":{}}}],["depend",{"_index":2,"title":{"dependencies.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"overview.html":{}}}],["destin",{"_index":134,"title":{},"body":{"index.html":{}}}],["develop",{"_index":150,"title":{},"body":{"index.html":{}}}],["direct",{"_index":86,"title":{},"body":{"coverage.html":{},"index.html":{},"overview.html":{}}}],["direction.direct",{"_index":26,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.directive.t",{"_index":85,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["direction.module.t",{"_index":20,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directive/agm",{"_index":25,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["dist",{"_index":48,"title":{},"body":{"modules/AppModule.html":{}}}],["distribut",{"_index":180,"title":{},"body":{"license.html":{}}}],["doc",{"_index":148,"title":{},"body":{"index.html":{}}}],["document",{"_index":67,"title":{},"body":{"coverage.html":{},"index.html":{},"license.html":{}}}],["done",{"_index":113,"title":{},"body":{"index.html":{}}}],["element",{"_index":60,"title":{},"body":{"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":63,"title":{},"body":{"classes/AppPage.html":{}}}],["environ",{"_index":78,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["event",{"_index":203,"title":{},"body":{"license.html":{}}}],["export",{"_index":7,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"overview.html":{}}}],["express",{"_index":196,"title":{},"body":{"license.html":{}}}],["fals",{"_index":234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["file",{"_index":18,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"license.html":{}}}],["fit",{"_index":199,"title":{},"body":{"license.html":{}}}],["follow",{"_index":187,"title":{},"body":{"license.html":{}}}],["forroot",{"_index":29,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["free",{"_index":164,"title":{},"body":{"license.html":{}}}],["furnish",{"_index":185,"title":{},"body":{"license.html":{}}}],["gener",{"_index":152,"title":{},"body":{"index.html":{}}}],["get",{"_index":101,"title":{"index.html":{},"license.html":{}},"body":{}}],["getdirect",{"_index":137,"title":{},"body":{"index.html":{}}}],["getparagraphtext",{"_index":55,"title":{},"body":{"classes/AppPage.html":{}}}],["googl",{"_index":89,"title":{},"body":{"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["grant",{"_index":163,"title":{},"body":{"license.html":{}}}],["h1')).gettext",{"_index":65,"title":{},"body":{"classes/AppPage.html":{}}}],["height",{"_index":124,"title":{},"body":{"index.html":{}}}],["herebi",{"_index":162,"title":{},"body":{"license.html":{}}}],["holder",{"_index":205,"title":{},"body":{"license.html":{}}}],["html",{"_index":122,"title":{},"body":{"index.html":{}}}],["httpmodul",{"_index":43,"title":{},"body":{"modules/AppModule.html":{}}}],["identifi",{"_index":69,"title":{},"body":{"coverage.html":{}}}],["impli",{"_index":197,"title":{},"body":{"license.html":{}}}],["import",{"_index":21,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["includ",{"_index":174,"title":{},"body":{"license.html":{}}}],["index",{"_index":53,"title":{"index.html":{}},"body":{"classes/AppPage.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":16,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["instal",{"_index":112,"title":{},"body":{"index.html":{}}}],["key",{"_index":120,"title":{},"body":{"index.html":{}}}],["kind",{"_index":195,"title":{},"body":{"license.html":{}}}],["lat",{"_index":128,"title":{},"body":{"index.html":{}}}],["legend",{"_index":3,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["less",{"_index":149,"title":{},"body":{"index.html":{}}}],["liabil",{"_index":209,"title":{},"body":{"license.html":{}}}],["liabl",{"_index":206,"title":{},"body":{"license.html":{}}}],["librari",{"_index":153,"title":{},"body":{"index.html":{}}}],["licens",{"_index":155,"title":{"license.html":{}},"body":{"index.html":{},"license.html":{}}}],["limit",{"_index":175,"title":{},"body":{"license.html":{}}}],["lng",{"_index":131,"title":{},"body":{"index.html":{}}}],["main",{"_index":143,"title":{},"body":{"index.html":{}}}],["map",{"_index":107,"title":{},"body":{"index.html":{}}}],["match",{"_index":32,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["merchant",{"_index":198,"title":{},"body":{"license.html":{}}}],["merg",{"_index":178,"title":{},"body":{"license.html":{}}}],["method",{"_index":54,"title":{},"body":{"classes/AppPage.html":{}}}],["miscellan",{"_index":222,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["mit",{"_index":156,"title":{},"body":{"index.html":{},"license.html":{}}}],["modifi",{"_index":177,"title":{},"body":{"license.html":{}}}],["modul",{"_index":0,"title":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"modules.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["modulewithprovid",{"_index":23,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["navigateto",{"_index":56,"title":{},"body":{"classes/AppPage.html":{}}}],["new",{"_index":90,"title":{},"body":{"coverage.html":{}}}],["ngmodul",{"_index":22,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{}}}],["ngoninit",{"_index":135,"title":{},"body":{"index.html":{}}}],["noninfring",{"_index":202,"title":{},"body":{"license.html":{}}}],["notic",{"_index":190,"title":{},"body":{"license.html":{}}}],["npm",{"_index":115,"title":{},"body":{"index.html":{}}}],["number",{"_index":129,"title":{},"body":{"index.html":{}}}],["object",{"_index":232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obtain",{"_index":167,"title":{},"body":{"license.html":{}}}],["offic",{"_index":147,"title":{},"body":{"index.html":{}}}],["offici",{"_index":104,"title":{},"body":{"index.html":{}}}],["origin",{"_index":133,"title":{},"body":{"index.html":{}}}],["otherwis",{"_index":214,"title":{},"body":{"license.html":{}}}],["out",{"_index":15,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"license.html":{},"overview.html":{}}}],["overview",{"_index":220,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["packag",{"_index":93,"title":{"dependencies.html":{}},"body":{}}],["particular",{"_index":200,"title":{},"body":{"license.html":{}}}],["peer",{"_index":98,"title":{},"body":{"dependencies.html":{}}}],["permiss",{"_index":161,"title":{},"body":{"license.html":{}}}],["permit",{"_index":184,"title":{},"body":{"license.html":{}}}],["person",{"_index":166,"title":{},"body":{"license.html":{}}}],["playground",{"_index":109,"title":{},"body":{"index.html":{}}}],["playground/.../environment.prod.t",{"_index":224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../environment.t",{"_index":225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../test.t",{"_index":223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/e2e/src/app.po.t",{"_index":52,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["playground/e2e/src/app.po.ts:4",{"_index":59,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/e2e/src/app.po.ts:8",{"_index":58,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/src/app/app.component.t",{"_index":73,"title":{},"body":{"coverage.html":{}}}],["playground/src/app/app.module.t",{"_index":39,"title":{},"body":{"modules/AppModule.html":{}}}],["playground/src/environments/environment.prod.t",{"_index":76,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/environments/environment.t",{"_index":80,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/test.t",{"_index":81,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":193,"title":{},"body":{"license.html":{}}}],["presidenti",{"_index":146,"title":{},"body":{"index.html":{}}}],["product",{"_index":233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protractor",{"_index":61,"title":{},"body":{"classes/AppPage.html":{}}}],["provid",{"_index":6,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["public",{"_index":127,"title":{},"body":{"index.html":{}}}],["publish",{"_index":179,"title":{},"body":{"license.html":{}}}],["purpos",{"_index":201,"title":{},"body":{"license.html":{}}}],["read",{"_index":111,"title":{},"body":{"index.html":{}}}],["requir",{"_index":83,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["require.context",{"_index":229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reset",{"_index":14,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["restrict",{"_index":173,"title":{},"body":{"license.html":{}}}],["result",{"_index":31,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["return",{"_index":30,"title":{},"body":{"modules/AgmDirectionModule.html":{},"classes/AppPage.html":{}}}],["right",{"_index":176,"title":{},"body":{"license.html":{}}}],["robbi",{"_index":160,"title":{},"body":{"license.html":{}}}],["root",{"_index":64,"title":{},"body":{"classes/AppPage.html":{}}}],["save",{"_index":117,"title":{},"body":{"index.html":{}}}],["sell",{"_index":183,"title":{},"body":{"license.html":{}}}],["shall",{"_index":191,"title":{},"body":{"license.html":{}}}],["softwar",{"_index":169,"title":{},"body":{"license.html":{}}}],["sourc",{"_index":17,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["spec\\.t",{"_index":231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../agm",{"_index":226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/directive/agm",{"_index":84,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/modules/agm",{"_index":19,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["start",{"_index":102,"title":{"index.html":{},"license.html":{}},"body":{"index.html":{}}}],["starter",{"_index":154,"title":{},"body":{"index.html":{}}}],["statement",{"_index":70,"title":{},"body":{"coverage.html":{}}}],["static",{"_index":28,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["station",{"_index":144,"title":{},"body":{"index.html":{}}}],["subject",{"_index":186,"title":{},"body":{"license.html":{}}}],["sublicens",{"_index":181,"title":{},"body":{"license.html":{}}}],["substanti",{"_index":192,"title":{},"body":{"license.html":{}}}],["support",{"_index":217,"title":{},"body":{"modules.html":{}}}],["svg",{"_index":218,"title":{},"body":{"modules.html":{}}}],["tabl",{"_index":92,"title":{},"body":{"coverage.html":{}}}],["tablesort(document.getelementbyid('coverag",{"_index":91,"title":{},"body":{"coverage.html":{}}}],["taipei",{"_index":142,"title":{},"body":{"index.html":{}}}],["taiwan",{"_index":145,"title":{},"body":{"index.html":{}}}],["this.destin",{"_index":139,"title":{},"body":{"index.html":{}}}],["this.getdirect",{"_index":136,"title":{},"body":{"index.html":{}}}],["this.origin",{"_index":138,"title":{},"body":{"index.html":{}}}],["tort",{"_index":213,"title":{},"body":{"license.html":{}}}],["true",{"_index":230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ts",{"_index":126,"title":{},"body":{"index.html":{}}}],["tslib",{"_index":96,"title":{},"body":{"dependencies.html":{}}}],["type",{"_index":68,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["us",{"_index":114,"title":{},"body":{"index.html":{},"license.html":{}}}],["usag",{"_index":121,"title":{},"body":{"index.html":{}}}],["use?👉",{"_index":110,"title":{},"body":{"index.html":{}}}],["valu",{"_index":228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["variabl",{"_index":77,"title":{"miscellaneous/variables.html":{}},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["warranti",{"_index":194,"title":{},"body":{"license.html":{}}}],["whether",{"_index":210,"title":{},"body":{"license.html":{}}}],["without",{"_index":172,"title":{},"body":{"license.html":{}}}],["x1f449",{"_index":151,"title":{},"body":{"index.html":{}}}],["x1f4e6",{"_index":118,"title":{},"body":{"index.html":{}}}],["zoom",{"_index":13,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
- "store": {"modules/AgmDirectionModule.html":{"url":"modules/AgmDirectionModule.html","title":"module - AgmDirectionModule","body":"\n \n\n\n\n\n Modules\n AgmDirectionModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/modules/agm-direction.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AgmDirection\n \n \n \n \n Exports\n \n \n AgmDirection\n \n \n \n \n \n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { AgmDirection } from '../directive/agm-direction.directive';\n\n// export * from '../directive/agm-direction.directive';\n\n@NgModule({\n imports: [],\n declarations: [\n AgmDirection,\n ],\n exports: [\n AgmDirection,\n ]\n})\nexport class AgmDirectionModule {\n static forRoot(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n playground/src/app/app.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Imports\n \n \n AgmDirectionModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { HttpModule } from '@angular/http';\n\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core';\nimport { AgmDirectionModule } from '../../../dist';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n HttpModule,\n AgmCoreModule.forRoot({\n apiKey: '',\n }),\n AgmDirectionModule,\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n \n File\n \n \n playground/e2e/src/app.po.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getParagraphText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getParagraphText\n \n \n \n \n \n \n \ngetParagraphText()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:8\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:4\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n navigateTo() {\n return browser.get('/');\n }\n\n getParagraphText() {\n return element(by.css('app-root h1')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n playground/e2e/src/app.po.ts\n \n \n class\n \n \n AppPage\n \n \n 0 %\n (0/3)\n \n \n \n \n \n playground/src/app/app.component.ts\n \n \n component\n \n \n AppComponent\n \n \n 0 %\n (0/13)\n \n \n \n \n \n playground/src/environments/environment.prod.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/environments/environment.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n context\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n require\n \n \n 0 %\n (0/1)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n directive\n \n \n AgmDirection\n \n \n 12 %\n (4/31)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n variable\n \n \n google\n \n \n 0 %\n (0/1)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @agm/core : ^1.0.0-beta.3\n \n tslib : ^1.9.0\n \n\n\n \n \n Peer Dependencies\n \n \n \n @angular/common : >= 6.0.0\n \n @angular/core : >= 6.0.0\n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nAgm-Direction\n\n\n\n\n\n\nAgm-Direction is the directive for @agm/core (not official)\n\nAngular 2+\nGoogle Map API\nPlayground \n\nHow to use?👉 Start Reading\n\nInstallation\nInstallation is done using the\nnpm install command:\n\nInstall @agm/core\nnpm install --save @agm/core\nInstall agm-direction\nnpm install --save agm-direction\n\nImporting Modules\n📦 @agm/core📦 agm-direction \nimport { BrowserModule } from '@angular/platform-browser'\nimport { NgModule } from '@angular/core'\nimport { AppComponent } from './app.component'\n\nimport { AgmCoreModule } from '@agm/core' // @agm/core\nimport { AgmDirectionModule } from 'agm-direction' // agm-direction\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({ // @agm/core\n apiKey: 'your key',\n }),\n AgmDirectionModule, // agm-direction\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Usage\nHTML\n\n \n \nCSS\nagm-map {\n height: 400px;\n}TS\npublic lat: Number = 24.799448\npublic lng: Number = 120.979021\n\npublic origin: any\npublic destination: any\n\nngOnInit() {\n this.getDirection()\n}\n\ngetDirection() {\n this.origin = { lat: 24.799448, lng: 120.979021 }\n this.destination = { lat: 24.799524, lng: 120.975017 }\n\n // this.origin = 'Taipei Main Station'\n // this.destination = 'Taiwan Presidential Office'\n}Document\n\nDocument Agm-Direction-Docs\nLess useful AgmDirectionModule\n\nDevelopment\n👉 Playground\nGenerator\nThis library generated by angular-library-starter.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2018 Robby\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n\n \n \n \n \n \n \n 2 modules\n \n \n \n \n \n \n \n \n 1 component\n \n \n \n \n \n \n \n 1 directive\n \n \n \n \n \n \n \n 1 class\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n context (playground/.../test.ts)\n \n \n environment (playground/.../environment.prod.ts)\n \n \n environment (playground/.../environment.ts)\n \n \n google (src/.../agm-direction.directive.ts)\n \n \n require (playground/.../test.ts)\n \n \n \n \n \n \n\n\n playground/src/test.ts\n \n \n \n \n \n \n \n \n context\n \n \n \n \n \n \n \n context: \n\n \n \n \n \n Default value : require.context('./', true, /\\.spec\\.ts$/)\n \n \n\n\n \n \n \n \n \n \n \n \n \n require\n \n \n \n \n \n \n \n require: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n playground/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true\n}\n \n \n\n\n \n \n\n playground/src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false\n}\n \n \n\n\n \n \n\n src/directive/agm-direction.directive.ts\n \n \n \n \n \n \n \n \n google\n \n \n \n \n \n \n \n google: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
+ "index": {"version":"2.1.6","fields":["title","body"],"fieldVectors":[["title/modules/AgmDirectionModule.html",[0,0.277,1,0.565]],["body/modules/AgmDirectionModule.html",[0,0.341,1,0.992,2,0.654,3,1.081,4,1.362,5,0.844,6,0.654,7,1.205,8,1.399,9,1.399,10,1.399,11,2.268,12,0.096,13,1.513,14,1.081,15,0.844,16,1.081,17,1.081,18,0.654,19,1.881,20,1.881,21,1.362,22,1.746,23,2.633,24,0.844,25,2.633,26,2.633,27,0.362,28,1.881,29,1.881,30,1.399,31,0.061,32,0.061]],["title/modules/AppModule.html",[0,0.277,33,0.744]],["body/modules/AppModule.html",[0,0.317,1,0.917,2,0.592,3,0.978,4,1.289,5,1.289,6,0.853,7,0.853,12,0.097,13,1.409,14,0.978,15,0.763,16,0.978,17,0.978,18,0.592,21,1.643,22,1.409,24,0.763,27,0.327,31,0.057,32,0.057,33,1.298,34,1.266,35,1.266,36,1.702,37,1.266,38,1.738,39,1.702,40,1.823,41,1.266,42,0.763,43,2.452,44,1.702,45,1.266,46,1.266,47,0.978,48,1.702,49,1.266,50,1.266]],["title/classes/AppPage.html",[27,0.411,51,1.229]],["body/classes/AppPage.html",[7,0.799,12,0.095,16,1.32,17,1.32,18,0.799,21,1.03,27,0.579,30,2.656,31,0.07,32,0.07,42,1.03,51,1.732,52,1.708,53,1.32,54,3.014,55,3.572,56,3.572,57,3.014,58,2.297,59,2.297,60,2.297,61,2.297,62,2.297,63,2.297,64,2.297,65,2.297]],["title/coverage.html",[66,2.137]],["body/coverage.html",[11,1.223,12,0.093,18,0.74,27,0.409,31,0.067,32,0.067,38,0.954,51,1.223,52,1.582,66,1.582,67,1.223,68,1.582,69,2.127,70,2.127,71,3.807,72,2.127,73,2.127,74,1.582,75,2.127,76,1.582,77,2.078,78,2.13,79,3.616,80,1.582,81,2.13,82,1.582,83,1.582,84,2.13,85,2.13,86,1.223,87,2.127,88,2.127,89,1.223,90,2.127,91,2.127,92,2.127]],["title/dependencies.html",[2,0.89,93,1.808]],["body/dependencies.html",[2,1.182,12,0.095,24,1.244,31,0.079,32,0.079,47,1.594,94,2.773,95,2.773,96,2.773,97,2.773,98,2.773,99,2.773,100,3.397]],["title/index.html",[53,1.039,101,1.344,102,1.039]],["body/index.html",[0,0.164,1,0.635,4,0.567,5,0.567,6,0.44,7,0.44,12,0.096,21,1.454,22,1.128,24,0.567,27,0.243,31,0.046,32,0.046,33,0.44,38,1.079,40,1.46,41,0.941,42,0.567,45,0.941,46,0.941,47,1.786,49,0.941,50,0.941,67,1.128,86,2.021,89,0.727,102,0.727,103,3.516,104,1.265,105,1.963,106,0.941,107,1.963,108,1.265,109,1.963,110,1.265,111,1.265,112,3.242,113,1.265,114,1.46,115,2.406,116,1.265,117,1.963,118,1.265,119,1.265,120,1.265,121,1.265,122,1.265,123,1.265,124,1.265,125,1.265,126,1.265,127,2.712,128,2.406,129,1.963,130,1.963,131,2.406,132,1.963,133,1.265,134,1.265,135,1.265,136,1.265,137,1.265,138,1.963,139,1.963,140,1.265,141,1.265,142,1.265,143,1.265,144,1.265,145,1.265,146,1.265,147,1.265,148,1.265,149,1.265,150,1.265,151,1.265,152,1.963,153,1.963,154,1.265,155,0.727,156,0.941]],["title/license.html",[101,1.344,102,1.039,155,1.039]],["body/license.html",[6,0.623,12,0.059,15,0.804,18,0.623,31,0.059,32,0.059,67,1.03,114,1.891,155,1.03,156,1.332,157,2.957,158,1.791,159,1.791,160,1.791,161,2.543,162,1.791,163,1.791,164,1.791,165,1.791,166,2.543,167,1.791,168,3.219,169,3.776,170,1.791,171,2.543,172,2.957,173,1.791,174,2.957,175,2.543,176,1.791,177,1.791,178,1.791,179,1.791,180,1.791,181,1.791,182,1.791,183,1.791,184,1.791,185,1.791,186,1.791,187,1.791,188,1.791,189,1.791,190,2.543,191,2.543,192,1.791,193,1.791,194,2.543,195,1.791,196,1.791,197,1.791,198,1.791,199,1.791,200,1.791,201,1.791,202,1.791,203,1.791,204,1.791,205,1.791,206,1.791,207,1.791,208,1.791,209,1.791,210,1.791,211,1.791,212,1.791,213,1.791,214,1.791,215,1.791,216,1.791]],["title/modules.html",[0,0.372]],["body/modules.html",[0,0.378,1,0.772,12,0.082,31,0.082,32,0.082,33,1.017,42,1.574,217,3.508,218,3.508,219,3.508]],["title/overview.html",[220,2.137]],["body/overview.html",[0,0.372,1,0.985,2,0.744,3,1.23,4,0.96,5,0.96,6,0.744,7,0.744,8,1.591,9,1.591,10,1.591,11,2.191,12,0.089,13,1.653,14,1.23,15,0.96,27,0.411,31,0.067,32,0.067,33,1.326,34,1.591,35,1.591,37,1.591,38,1.71,74,1.591,86,1.23,106,1.591,220,1.591,221,3.248]],["title/miscellaneous/variables.html",[77,1.471,222,1.344]],["body/miscellaneous/variables.html",[12,0.094,31,0.066,32,0.066,53,1.209,68,2.564,76,1.564,77,1.209,78,2.761,80,1.564,81,1.564,82,2.394,83,2.394,84,1.564,85,2.114,89,1.851,222,1.564,223,2.843,224,2.103,225,2.103,226,2.103,227,3.22,228,3.22,229,2.103,230,2.843,231,2.103,232,3.449,233,2.843,234,2.103]]],"invertedIndex":[["",{"_index":12,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":71,"title":{},"body":{"coverage.html":{}}}],["0/1",{"_index":79,"title":{},"body":{"coverage.html":{}}}],["0/13",{"_index":75,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":72,"title":{},"body":{"coverage.html":{}}}],["1",{"_index":221,"title":{},"body":{"overview.html":{}}}],["1.0.0",{"_index":94,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":97,"title":{},"body":{"dependencies.html":{}}}],["12",{"_index":87,"title":{},"body":{"coverage.html":{}}}],["120.975017",{"_index":141,"title":{},"body":{"index.html":{}}}],["120.979021",{"_index":132,"title":{},"body":{"index.html":{}}}],["2",{"_index":106,"title":{},"body":{"index.html":{},"overview.html":{}}}],["2018",{"_index":159,"title":{},"body":{"license.html":{}}}],["24.799448",{"_index":130,"title":{},"body":{"index.html":{}}}],["24.799524",{"_index":140,"title":{},"body":{"index.html":{}}}],["4/31",{"_index":88,"title":{},"body":{"coverage.html":{}}}],["400px",{"_index":125,"title":{},"body":{"index.html":{}}}],["6.0.0",{"_index":100,"title":{},"body":{"dependencies.html":{}}}],["abov",{"_index":189,"title":{},"body":{"license.html":{}}}],["action",{"_index":211,"title":{},"body":{"license.html":{}}}],["agm",{"_index":103,"title":{},"body":{"index.html":{}}}],["agm/cor",{"_index":47,"title":{},"body":{"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["agm/core📦",{"_index":119,"title":{},"body":{"index.html":{}}}],["agmcoremodul",{"_index":46,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmcoremodule.forroot",{"_index":49,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmdirect",{"_index":11,"title":{},"body":{"modules/AgmDirectionModule.html":{},"coverage.html":{},"overview.html":{}}}],["agmdirectionmodul",{"_index":1,"title":{"modules/AgmDirectionModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["and/or",{"_index":182,"title":{},"body":{"license.html":{}}}],["angular",{"_index":105,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":99,"title":{},"body":{"dependencies.html":{}}}],["angular/cor",{"_index":24,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/http",{"_index":44,"title":{},"body":{"modules/AppModule.html":{}}}],["angular/platform",{"_index":41,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["api",{"_index":108,"title":{},"body":{"index.html":{}}}],["apikey",{"_index":50,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app.compon",{"_index":45,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["appcompon",{"_index":38,"title":{},"body":{"modules/AppModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["appmodul",{"_index":33,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["apppag",{"_index":51,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["aris",{"_index":215,"title":{},"body":{"license.html":{}}}],["associ",{"_index":170,"title":{},"body":{"license.html":{}}}],["author",{"_index":204,"title":{},"body":{"license.html":{}}}],["beta.3",{"_index":95,"title":{},"body":{"dependencies.html":{}}}],["bootstrap",{"_index":5,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["brows",{"_index":219,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":42,"title":{},"body":{"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"modules.html":{}}}],["browser.get",{"_index":62,"title":{},"body":{"classes/AppPage.html":{}}}],["browsermodul",{"_index":40,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["c",{"_index":158,"title":{},"body":{"license.html":{}}}],["charg",{"_index":165,"title":{},"body":{"license.html":{}}}],["claim",{"_index":207,"title":{},"body":{"license.html":{}}}],["class",{"_index":27,"title":{"classes/AppPage.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["cluster_agmdirectionmodul",{"_index":8,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_declar",{"_index":9,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_export",{"_index":10,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_appmodul",{"_index":34,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":37,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declar",{"_index":35,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_import",{"_index":36,"title":{},"body":{"modules/AppModule.html":{}}}],["command",{"_index":116,"title":{},"body":{"index.html":{}}}],["compon",{"_index":74,"title":{},"body":{"coverage.html":{},"overview.html":{}}}],["condit",{"_index":188,"title":{},"body":{"license.html":{}}}],["connect",{"_index":216,"title":{},"body":{"license.html":{}}}],["context",{"_index":82,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["contract",{"_index":212,"title":{},"body":{"license.html":{}}}],["copi",{"_index":168,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":157,"title":{},"body":{"license.html":{}}}],["coverag",{"_index":66,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["css",{"_index":123,"title":{},"body":{"index.html":{}}}],["damag",{"_index":208,"title":{},"body":{"license.html":{}}}],["deal",{"_index":171,"title":{},"body":{"license.html":{}}}],["declar",{"_index":4,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["default",{"_index":227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["defin",{"_index":57,"title":{},"body":{"classes/AppPage.html":{}}}],["depend",{"_index":2,"title":{"dependencies.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"overview.html":{}}}],["destin",{"_index":134,"title":{},"body":{"index.html":{}}}],["develop",{"_index":150,"title":{},"body":{"index.html":{}}}],["direct",{"_index":86,"title":{},"body":{"coverage.html":{},"index.html":{},"overview.html":{}}}],["direction.direct",{"_index":26,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.directive.t",{"_index":85,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["direction.module.t",{"_index":20,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directive/agm",{"_index":25,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["dist",{"_index":48,"title":{},"body":{"modules/AppModule.html":{}}}],["distribut",{"_index":180,"title":{},"body":{"license.html":{}}}],["doc",{"_index":148,"title":{},"body":{"index.html":{}}}],["document",{"_index":67,"title":{},"body":{"coverage.html":{},"index.html":{},"license.html":{}}}],["done",{"_index":113,"title":{},"body":{"index.html":{}}}],["element",{"_index":60,"title":{},"body":{"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":63,"title":{},"body":{"classes/AppPage.html":{}}}],["environ",{"_index":78,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["event",{"_index":203,"title":{},"body":{"license.html":{}}}],["export",{"_index":7,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"overview.html":{}}}],["express",{"_index":196,"title":{},"body":{"license.html":{}}}],["fals",{"_index":234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["file",{"_index":18,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"license.html":{}}}],["fit",{"_index":199,"title":{},"body":{"license.html":{}}}],["follow",{"_index":187,"title":{},"body":{"license.html":{}}}],["forroot",{"_index":29,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["free",{"_index":164,"title":{},"body":{"license.html":{}}}],["furnish",{"_index":185,"title":{},"body":{"license.html":{}}}],["gener",{"_index":152,"title":{},"body":{"index.html":{}}}],["get",{"_index":101,"title":{"index.html":{},"license.html":{}},"body":{}}],["getdirect",{"_index":137,"title":{},"body":{"index.html":{}}}],["getparagraphtext",{"_index":55,"title":{},"body":{"classes/AppPage.html":{}}}],["googl",{"_index":89,"title":{},"body":{"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["grant",{"_index":163,"title":{},"body":{"license.html":{}}}],["h1')).gettext",{"_index":65,"title":{},"body":{"classes/AppPage.html":{}}}],["height",{"_index":124,"title":{},"body":{"index.html":{}}}],["herebi",{"_index":162,"title":{},"body":{"license.html":{}}}],["holder",{"_index":205,"title":{},"body":{"license.html":{}}}],["html",{"_index":122,"title":{},"body":{"index.html":{}}}],["httpmodul",{"_index":43,"title":{},"body":{"modules/AppModule.html":{}}}],["identifi",{"_index":69,"title":{},"body":{"coverage.html":{}}}],["impli",{"_index":197,"title":{},"body":{"license.html":{}}}],["import",{"_index":21,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["includ",{"_index":174,"title":{},"body":{"license.html":{}}}],["index",{"_index":53,"title":{"index.html":{}},"body":{"classes/AppPage.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":16,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["instal",{"_index":112,"title":{},"body":{"index.html":{}}}],["key",{"_index":120,"title":{},"body":{"index.html":{}}}],["kind",{"_index":195,"title":{},"body":{"license.html":{}}}],["lat",{"_index":128,"title":{},"body":{"index.html":{}}}],["legend",{"_index":3,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["less",{"_index":149,"title":{},"body":{"index.html":{}}}],["liabil",{"_index":209,"title":{},"body":{"license.html":{}}}],["liabl",{"_index":206,"title":{},"body":{"license.html":{}}}],["librari",{"_index":153,"title":{},"body":{"index.html":{}}}],["licens",{"_index":155,"title":{"license.html":{}},"body":{"index.html":{},"license.html":{}}}],["limit",{"_index":175,"title":{},"body":{"license.html":{}}}],["lng",{"_index":131,"title":{},"body":{"index.html":{}}}],["main",{"_index":143,"title":{},"body":{"index.html":{}}}],["map",{"_index":107,"title":{},"body":{"index.html":{}}}],["match",{"_index":32,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["merchant",{"_index":198,"title":{},"body":{"license.html":{}}}],["merg",{"_index":178,"title":{},"body":{"license.html":{}}}],["method",{"_index":54,"title":{},"body":{"classes/AppPage.html":{}}}],["miscellan",{"_index":222,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["mit",{"_index":156,"title":{},"body":{"index.html":{},"license.html":{}}}],["modifi",{"_index":177,"title":{},"body":{"license.html":{}}}],["modul",{"_index":0,"title":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"modules.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["modulewithprovid",{"_index":23,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["navigateto",{"_index":56,"title":{},"body":{"classes/AppPage.html":{}}}],["new",{"_index":90,"title":{},"body":{"coverage.html":{}}}],["ngmodul",{"_index":22,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{}}}],["ngoninit",{"_index":135,"title":{},"body":{"index.html":{}}}],["noninfring",{"_index":202,"title":{},"body":{"license.html":{}}}],["notic",{"_index":190,"title":{},"body":{"license.html":{}}}],["npm",{"_index":115,"title":{},"body":{"index.html":{}}}],["number",{"_index":129,"title":{},"body":{"index.html":{}}}],["object",{"_index":232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obtain",{"_index":167,"title":{},"body":{"license.html":{}}}],["offic",{"_index":147,"title":{},"body":{"index.html":{}}}],["offici",{"_index":104,"title":{},"body":{"index.html":{}}}],["origin",{"_index":133,"title":{},"body":{"index.html":{}}}],["otherwis",{"_index":214,"title":{},"body":{"license.html":{}}}],["out",{"_index":15,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"license.html":{},"overview.html":{}}}],["overview",{"_index":220,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["packag",{"_index":93,"title":{"dependencies.html":{}},"body":{}}],["particular",{"_index":200,"title":{},"body":{"license.html":{}}}],["peer",{"_index":98,"title":{},"body":{"dependencies.html":{}}}],["permiss",{"_index":161,"title":{},"body":{"license.html":{}}}],["permit",{"_index":184,"title":{},"body":{"license.html":{}}}],["person",{"_index":166,"title":{},"body":{"license.html":{}}}],["playground",{"_index":109,"title":{},"body":{"index.html":{}}}],["playground/.../environment.prod.t",{"_index":224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../environment.t",{"_index":225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../test.t",{"_index":223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/e2e/src/app.po.t",{"_index":52,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["playground/e2e/src/app.po.ts:4",{"_index":59,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/e2e/src/app.po.ts:8",{"_index":58,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/src/app/app.component.t",{"_index":73,"title":{},"body":{"coverage.html":{}}}],["playground/src/app/app.module.t",{"_index":39,"title":{},"body":{"modules/AppModule.html":{}}}],["playground/src/environments/environment.prod.t",{"_index":76,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/environments/environment.t",{"_index":80,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/test.t",{"_index":81,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":193,"title":{},"body":{"license.html":{}}}],["presidenti",{"_index":146,"title":{},"body":{"index.html":{}}}],["product",{"_index":233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protractor",{"_index":61,"title":{},"body":{"classes/AppPage.html":{}}}],["provid",{"_index":6,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["public",{"_index":127,"title":{},"body":{"index.html":{}}}],["publish",{"_index":179,"title":{},"body":{"license.html":{}}}],["purpos",{"_index":201,"title":{},"body":{"license.html":{}}}],["read",{"_index":111,"title":{},"body":{"index.html":{}}}],["requir",{"_index":83,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["require.context",{"_index":229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reset",{"_index":14,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["restrict",{"_index":173,"title":{},"body":{"license.html":{}}}],["result",{"_index":31,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["return",{"_index":30,"title":{},"body":{"modules/AgmDirectionModule.html":{},"classes/AppPage.html":{}}}],["right",{"_index":176,"title":{},"body":{"license.html":{}}}],["robbi",{"_index":160,"title":{},"body":{"license.html":{}}}],["root",{"_index":64,"title":{},"body":{"classes/AppPage.html":{}}}],["save",{"_index":117,"title":{},"body":{"index.html":{}}}],["sell",{"_index":183,"title":{},"body":{"license.html":{}}}],["shall",{"_index":191,"title":{},"body":{"license.html":{}}}],["softwar",{"_index":169,"title":{},"body":{"license.html":{}}}],["sourc",{"_index":17,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["spec\\.t",{"_index":231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../agm",{"_index":226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/directive/agm",{"_index":84,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/modules/agm",{"_index":19,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["start",{"_index":102,"title":{"index.html":{},"license.html":{}},"body":{"index.html":{}}}],["starter",{"_index":154,"title":{},"body":{"index.html":{}}}],["statement",{"_index":70,"title":{},"body":{"coverage.html":{}}}],["static",{"_index":28,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["station",{"_index":144,"title":{},"body":{"index.html":{}}}],["subject",{"_index":186,"title":{},"body":{"license.html":{}}}],["sublicens",{"_index":181,"title":{},"body":{"license.html":{}}}],["substanti",{"_index":192,"title":{},"body":{"license.html":{}}}],["support",{"_index":217,"title":{},"body":{"modules.html":{}}}],["svg",{"_index":218,"title":{},"body":{"modules.html":{}}}],["tabl",{"_index":92,"title":{},"body":{"coverage.html":{}}}],["tablesort(document.getelementbyid('coverag",{"_index":91,"title":{},"body":{"coverage.html":{}}}],["taipei",{"_index":142,"title":{},"body":{"index.html":{}}}],["taiwan",{"_index":145,"title":{},"body":{"index.html":{}}}],["this.destin",{"_index":139,"title":{},"body":{"index.html":{}}}],["this.getdirect",{"_index":136,"title":{},"body":{"index.html":{}}}],["this.origin",{"_index":138,"title":{},"body":{"index.html":{}}}],["tort",{"_index":213,"title":{},"body":{"license.html":{}}}],["true",{"_index":230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ts",{"_index":126,"title":{},"body":{"index.html":{}}}],["tslib",{"_index":96,"title":{},"body":{"dependencies.html":{}}}],["type",{"_index":68,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["us",{"_index":114,"title":{},"body":{"index.html":{},"license.html":{}}}],["usag",{"_index":121,"title":{},"body":{"index.html":{}}}],["use?👉",{"_index":110,"title":{},"body":{"index.html":{}}}],["valu",{"_index":228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["variabl",{"_index":77,"title":{"miscellaneous/variables.html":{}},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["warranti",{"_index":194,"title":{},"body":{"license.html":{}}}],["whether",{"_index":210,"title":{},"body":{"license.html":{}}}],["without",{"_index":172,"title":{},"body":{"license.html":{}}}],["x1f449",{"_index":151,"title":{},"body":{"index.html":{}}}],["x1f4e6",{"_index":118,"title":{},"body":{"index.html":{}}}],["zoom",{"_index":13,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
+ "store": {"modules/AgmDirectionModule.html":{"url":"modules/AgmDirectionModule.html","title":"module - AgmDirectionModule","body":"\n \n\n\n\n\n Modules\n AgmDirectionModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/modules/agm-direction.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AgmDirection\n \n \n \n \n Exports\n \n \n AgmDirection\n \n \n \n \n \n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { AgmDirection } from '../directive/agm-direction.directive';\n\nexport * from '../directive/agm-direction.directive';\n\n@NgModule({\n imports: [],\n declarations: [\n AgmDirection,\n ],\n exports: [\n AgmDirection,\n ]\n})\nexport class AgmDirectionModule {\n static forRoot(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n \n \n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n\n \n File\n \n \n playground/src/app/app.module.ts\n \n\n\n \n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Imports\n \n \n AgmDirectionModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { HttpModule } from '@angular/http';\n\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core';\nimport { AgmDirectionModule } from '../../../dist';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n HttpModule,\n AgmCoreModule.forRoot({\n apiKey: '',\n }),\n AgmDirectionModule,\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n\n\n \n Source\n \n\n\n\n \n \n File\n \n \n playground/e2e/src/app.po.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getParagraphText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getParagraphText\n \n \n \n \n \n \n \ngetParagraphText()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:8\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:4\n \n \n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n navigateTo() {\n return browser.get('/');\n }\n\n getParagraphText() {\n return element(by.css('app-root h1')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n playground/e2e/src/app.po.ts\n \n \n class\n \n \n AppPage\n \n \n 0 %\n (0/3)\n \n \n \n \n \n playground/src/app/app.component.ts\n \n \n component\n \n \n AppComponent\n \n \n 0 %\n (0/13)\n \n \n \n \n \n playground/src/environments/environment.prod.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/environments/environment.ts\n \n \n variable\n \n \n environment\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n context\n \n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n \n variable\n \n \n require\n \n \n 0 %\n (0/1)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n directive\n \n \n AgmDirection\n \n \n 12 %\n (4/31)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n \n variable\n \n \n google\n \n \n 0 %\n (0/1)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @agm/core : ^1.0.0-beta.3\n \n tslib : ^1.9.0\n \n\n\n \n \n Peer Dependencies\n \n \n \n @angular/common : >= 6.0.0\n \n @angular/core : >= 6.0.0\n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nAgm-Direction\n\n\n\n\n\n\nAgm-Direction is the directive for @agm/core (not official)\n\nAngular 2+\nGoogle Map API\nPlayground \n\nHow to use?👉 Start Reading\n\nInstallation\nInstallation is done using the\nnpm install command:\n\nInstall @agm/core\nnpm install --save @agm/core\nInstall agm-direction\nnpm install --save agm-direction\n\nImporting Modules\n📦 @agm/core📦 agm-direction \nimport { BrowserModule } from '@angular/platform-browser'\nimport { NgModule } from '@angular/core'\nimport { AppComponent } from './app.component'\n\nimport { AgmCoreModule } from '@agm/core' // @agm/core\nimport { AgmDirectionModule } from 'agm-direction' // agm-direction\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({ // @agm/core\n apiKey: 'your key',\n }),\n AgmDirectionModule, // agm-direction\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Usage\nHTML\n\n \n \nCSS\nagm-map {\n height: 400px;\n}TS\npublic lat: Number = 24.799448\npublic lng: Number = 120.979021\n\npublic origin: any\npublic destination: any\n\nngOnInit() {\n this.getDirection()\n}\n\ngetDirection() {\n this.origin = { lat: 24.799448, lng: 120.979021 }\n this.destination = { lat: 24.799524, lng: 120.975017 }\n\n // this.origin = 'Taipei Main Station'\n // this.destination = 'Taiwan Presidential Office'\n}Document\n\nDocument Agm-Direction-Docs\nLess useful AgmDirectionModule\n\nDevelopment\n👉 Playground\nGenerator\nThis library generated by angular-library-starter.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2018 Robby\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n Declarations\n\n Module\n\n Bootstrap\n\n Providers\n\n Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n \n\n \n \n \n \n \n \n 2 modules\n \n \n \n \n \n \n \n \n 1 component\n \n \n \n \n \n \n \n 1 directive\n \n \n \n \n \n \n \n 1 class\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n context (playground/.../test.ts)\n \n \n environment (playground/.../environment.prod.ts)\n \n \n environment (playground/.../environment.ts)\n \n \n google (src/.../agm-direction.directive.ts)\n \n \n require (playground/.../test.ts)\n \n \n \n \n \n \n\n\n playground/src/test.ts\n \n \n \n \n \n \n \n \n context\n \n \n \n \n \n \n \n context: \n\n \n \n \n \n Default value : require.context('./', true, /\\.spec\\.ts$/)\n \n \n\n\n \n \n \n \n \n \n \n \n \n require\n \n \n \n \n \n \n \n require: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n playground/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true\n}\n \n \n\n\n \n \n\n playground/src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n environment: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false\n}\n \n \n\n\n \n \n\n src/directive/agm-direction.directive.ts\n \n \n \n \n \n \n \n \n google\n \n \n \n \n \n \n \n google: any\n\n \n \n \n \n Type : any\n\n \n \n\n\n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
}
diff --git a/docs/license.html b/docs/license.html
index b7f2aed..66b980b 100644
--- a/docs/license.html
+++ b/docs/license.html
@@ -80,14 +80,14 @@
AgmDirectionModule
-