在Ionic中更改标签后冻结地图

时间:2018-05-23 03:29:44

标签: angular google-maps ionic-framework ionic3 ionic-native

我在我的离子应用程序中使用Tab页面,当我更改为另一个选项卡然后再次返回到地图页面时,我的地图将不会显示。然后我在互联网上找到了解决方法,在我换到另一个标签后,我的地图确实再次出现。但问题是现在地图是冻结的,我无法拖动,移动或缩放我的地图。这是我显示地图的代码。

import { Component , ViewChild, ElementRef} from '@angular/core';
import { NavController } from 'ionic-angular';
import {GoogleMap, GoogleMaps, LatLng, CameraPosition, GoogleMapsEvent , Marker, MarkerOptions } from '@ionic-native/google-maps';
import {Geolocation} from '@ionic-native/geolocation';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})
export class HomePage {
 @ViewChild('map') mapelement : ElementRef;
 map : GoogleMap;
 initialMapLoad: boolean = true;
  constructor(public navCtrl: NavController, private _googlemap : GoogleMaps, 
    private _geolocation : Geolocation) {

  }
  ionViewDidLoad(){

    this.initMap();

  }


  initMap(){
    let element = this.mapelement.nativeElement;
    this.getlocation().then(res => {
      let loc = new LatLng(res.coords.latitude, res.coords.longitude);
      this.map = this._googlemap.create('map', {      
        camera:{
          target: loc,
          zoom: 15
        }

      });
      this.createmarker(loc, 'Me');
    }).catch (err => {
       console.log(err);
    });


  }
  ionViewDidEnter(){
    if (!this.initialMapLoad) {
      this.map.setDiv('map');
    } else {
      this.initialMapLoad = false;
    }
  }
  getlocation(){
    return this._geolocation.getCurrentPosition();
  }
  movecamer(loc : LatLng){
   let options : CameraPosition<LatLng> ={
     target: loc,
     zoom: 15,
     tilt: 10
   }
   this.map.moveCamera(options)
  }
  createmarker(loc: LatLng, title : string){
    let markeroptions : MarkerOptions = {
        position : loc,
        title : title
    }
    return this.map.addMarker(markeroptions);
  }

}

任何人都可以帮助我吗?并告诉我这里有什么问题。

为什么地图会冻结而我无法移动地图?感谢

1 个答案:

答案 0 :(得分:0)

我通过删除watchPosition事件解决了该问题,只需在promise中调用getCurrentPosition事件即可解决制表符冻结问题。

this.geolocation.getCurrentPosition().then((resp) => {
 // resp.coords.latitude
 // resp.coords.longitude
}).catch((error) => {
  console.log('Error getting location', error);
});