ionic 4-使用typeScript滚动到我的webView上的x,y坐标

时间:2019-07-01 10:33:17

标签: html typescript ionic4

我正在应用程序中创建自定义地图。这本质上是大地图图像,其中我根据gps位置将小头像图像移到大地图图像上。

我允许用户在地图上滚动以查看屏幕外的地方。

我现在想包括一个按钮,它将使用户重新回到他们的位置。但它不起作用,我尝试使用:

  window.moveTo()
  window.scrollTo()

但是什么也没发生。有人可以协助吗?

html

 <ion-content padding id=ionScroll scrollX="true" scrollY="true">

  <div id = "main" >
    <img class = "map"
    id = "map"
    src = "../../assets/img/limerickmap.JPG"
    alt = "map"/> 
    <img class = "avatar"
    id = "avatar"
    src = "../../assets/img/satan.png"
    alt = "avatar" />
  </div>
  <ion-fab vertical="bottom" horizontal="end" slot="fixed">
    <ion-fab-button (click) = "centreMap()">
      <ion-icon name="compass"></ion-icon>
    </ion-fab-button>
  </ion-fab>

   </ion-content>

打字稿

 ngOnInit() {
      ionScroll = window.document.getElementById("ionScroll");
 }

 centreMap() {
     ionScroll.scrollTo(avatar.style.left , avatar.style.top);
     console.log("TEST scroll" +avatar.style.left+"  "+avatar.style.top)
 }

1 个答案:

答案 0 :(得分:0)

尝试设置id是我不认为正确的方法。

怪异的快活有一个tutorial explaining how to scroll to an X/Y coord

首先,您需要在scrollEvents上使用ion-content

<ion-header>
  <ion-toolbar>
    <ion-title>
      Ion Content Scroll
    </ion-title>
  </ion-toolbar>
</ion-header>

<ion-content [scrollEvents]="true">
  <div style="height: 50px;width:600px;" text-right>
    <ion-button (click)="ScrollToPoint(-300, -120)">
      Scroll To Point Right
    </ion-button>
  </div>
</ion-content>

在代码中,您需要使用@ViewChild来获取对ion-content的代码引用,然后才能使用其ScrollToPoint() api:

import { Component, ViewChild } from '@angular/core';
import { IonContent } from '@ionic/angular';

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss'],
})
export class HomePage {
  @ViewChild(IonContent) content: IonContent;

  constructor(
  ){
  }

  ScrollToPoint(X,Y){
    this.content.scrollToPoint(X,Y,1500);
  }
}

我已经简化了这篇文章,因此如果您希望它真正起作用,则需要在其中添加一些内容,以便在页面上添加滚动条。