bubble maps

This commit is contained in:
nixa 2016-05-02 19:49:37 +03:00
parent 1b2b7e42b1
commit f63d286aa1
23 changed files with 830 additions and 1 deletions

View file

@ -3,6 +3,7 @@ import {RouteConfig} from 'angular2/router';
import {GoogleMaps} from './components/googleMaps';
import {LeafletMaps} from "./components/leafletMaps";
import {BubbleMaps} from "./components/bubbleMaps/bubbleMaps.component";
@Component({
selector: 'maps',
@ -23,6 +24,11 @@ import {LeafletMaps} from "./components/leafletMaps";
component: LeafletMaps,
path: '/leaflet-maps',
},
{
name: 'BubbleMaps',
component: BubbleMaps,
path: '/bubble-maps',
},
])
export class Maps {