离子2目标路径



有我的目的地地址来自 map-page.ts,我想从我在哪里,我必须做什么。

initMap(){
    let latLng = new google.maps.LatLng(this.lat, this.lng);
        let mapOptions = {
        center: latLng,
        zoom: 19,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    this.map = new google.maps.Map(this.mapElement.nativeElement, mapOptions);
    let marker = new google.maps.Marker({
    map: this.map,
    animation: google.maps.Animation.DROP,
    position: this.map.getCenter()
  });
  let content = this.msj;          
  this.addInfoWindow(marker, content);
}

我实现了一个基本的离子-2应用程序,用于显示2个位置之间的路径,从这里拿起功能。请参阅此示例。

相关内容

  • 没有找到相关文章