Fix routes
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2020-10-31 11:45:03 +01:00
parent cd10165510
commit ab835e904e
3 changed files with 30 additions and 47 deletions

View File

@@ -5,28 +5,16 @@ import { AuthGuard } from '@farmmaps/common';
const routes = [
{
path: '', children: [
{
path: '',
component: MapComponent
}
]
path: '',
component: MapComponent
},
{
path: ':xCenter/:yCenter/:zoom/:rotation/:baseLayer/:queryState', children: [
{
path: '',
component: MapComponent
}
]
path: ':xCenter/:yCenter/:zoom/:rotation/:baseLayer/:queryState',
component: MapComponent
},
{
path: ':queryState', children: [
{
path: '',
component: MapComponent
}
]
path: ':queryState',
component: MapComponent
}
];