leaflet maps

This commit is contained in:
nixa 2016-05-02 18:17:54 +03:00
parent 6cf83c8903
commit 1b2b7e42b1
13 changed files with 58 additions and 5 deletions

View file

@ -2,6 +2,7 @@ import {Component, ViewEncapsulation} from 'angular2/core';
import {RouteConfig} from 'angular2/router';
import {GoogleMaps} from './components/googleMaps';
import {LeafletMaps} from "./components/leafletMaps";
@Component({
selector: 'maps',
@ -17,6 +18,11 @@ import {GoogleMaps} from './components/googleMaps';
path: '/google-maps',
useAsDefault: true
},
{
name: 'LeafletMaps',
component: LeafletMaps,
path: '/leaflet-maps',
},
])
export class Maps {