第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

有沒(méi)有辦法更新/刷新 agm-map 組件?

有沒(méi)有辦法更新/刷新 agm-map 組件?

慕村9548890 2023-06-29 20:58:51
我正在嘗試更新應(yīng)用程序中的地圖組件,我希望刷新位置并將地圖平移到表單中輸入的緯度和經(jīng)度。我現(xiàn)在有這個(gè):HTML 組件:    <div class="row">          <button (click)="refreshMap()" class="btn btn-block">Refrescar localizacion</button>        </div>    <agm-map            [latitude]="myform.get('Latitude').value"            [longitude]="myform.get('Longitude').value"            [disableDefaultUI]="true"            [zoom]="13"            (mapClick)="mapClicked($event)"            [usePanning]="true"          >            <agm-marker [latitude]="myform.get('Latitude').value" [longitude]="myform.get('Longitude').value"> </agm-marker>          </agm-map>打字稿: refreshMap() {    const position = {      coords: { lat: this.myform.controls.('latitude').value, lng: this.myform.controls.('longitude').value },    };    this.marker.position = position.coords;    const currentLat = this.marker.position.lat;    const currentLng = this.marker.position.lng;    this.latitude.setValue(currentLat);    this.longitude.setValue(currentLng); }這樣,當(dāng)我單擊該按鈕時(shí),它會(huì)將 agm 地圖平移到由當(dāng)前輸入上的值表示的位置,并在該位置添加一個(gè)標(biāo)記。我想在不使用按鈕的情況下,在輸入坐標(biāo)時(shí)反應(yīng)性地執(zhí)行此操作,就像在一定時(shí)間后更新地圖一樣,但通過(guò)對(duì)我有用的按鈕來(lái)完成此操作(我在同一個(gè)中同時(shí)擁有輸入和 agm 地圖)屏幕)。有什么辦法可以讓這成為可能嗎?
查看完整描述

1 回答

?
慕容708150

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個(gè)贊

嘗試下面

  • 訂閱valueChanges表單的屬性。當(dāng)您對(duì)表單進(jìn)行任何更改時(shí),這將執(zhí)行

  • 通過(guò)管道將訂閱傳遞給debounceTime運(yùn)算符,這將確保調(diào)用函數(shù)之前有延遲

  • 通過(guò)運(yùn)算符管道 Observable distinctUntilChanged,我們不想對(duì)相同的值調(diào)用 location

  import { combineLatest } from 'rxjs';

  import { debounceTime, distinctUntilChanged, tap } from 'rxjs/operators';


  latitude$ = this.myform.get('Latitude').valueChanges;

  longitude$ = this.myform.get('Longitude').valueChanges;

  formChanges$ = combineLatest([this.latitude$, this.longitude$]).pipe(

    debounceTime(1000),

    distinctUntilChanged(),

    tap(() => this.refreshMap())

  )

  ngOnInit() {

    this.formChanges$.subscribe()

  }


查看完整回答
反對(duì) 回復(fù) 2023-06-29
  • 1 回答
  • 0 關(guān)注
  • 145 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)