|
@@ -3,6 +3,7 @@ import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
3
|
3
|
import { GoogleMapComponent } from '../../components/google-map/google-map';
|
4
|
4
|
import { TrailsPage } from '../trails/trails';
|
5
|
5
|
import { Geolocation } from '@ionic-native/geolocation'
|
|
6
|
+import { GoogleMapPage } from '../googleMap/googleMap';
|
6
|
7
|
|
7
|
8
|
|
8
|
9
|
|
|
@@ -21,7 +22,7 @@ export class MainMenuPage {
|
21
|
22
|
}
|
22
|
23
|
|
23
|
24
|
goToMap() {
|
24
|
|
- this.navCtrl.push(GoogleMapComponent);
|
|
25
|
+ this.navCtrl.push(GoogleMapPage);
|
25
|
26
|
}
|
26
|
27
|
|
27
|
28
|
|