Angular Google Maps缩放仅工作一次,然后您无法更改缩放值

时间:2018-10-29 12:09:07

标签: angular google-maps maps angular-google-maps

我正在研究一个使用过agm的项目。除了缩放问题,一切都很好。我在地图上放置了很多标记,当我单击其中的一个标记时,我要缩放它的纬度和经度。我可以将这些标记的纬度和经度居中,但是缩放只是一次起作用,而不是第二次。有没有人帮我解决这个问题。顺便说一句,我是Angular的新手。

谢谢。

2 个答案:

答案 0 :(得分:2)

cityInfo(i){
            this.latitude=this.parkandFlyCenter[i].lat;
            this.longitude=this.parkandFlyCenter[i].lon;
            // this is not working--> this.mapZoom=14;
            //But this is working(interesting !)
            this.mapZoom= this.mapZoom+0.5;
        
      }
<agm-map class="agm-map" 
    [latitude]="latitude" 
    [longitude]="longitude"
    minZoom="3" 
    [zoom]="mapZoom"
    [styles]="styles"
    [mapTypeControl]="true" 
    [mapTypeControlOptions]="mapType"
    (centerChange)="centerChange($event)"
    (zoomChange)="zoomChange($event)"
    (boundsChange)="boundsChange($event)"
    >
        <agm-marker-cluster [styles]="clusterStyles">
        <agm-marker *ngFor="let city of Cities; let i = index"
        [latitude]="city.lat"
        [longitude]="city.lon"
        [iconUrl]="icon"
        [label]="{color: 'white', text: sometext}"
        (markerClick)="cityInfo(i)">

        </agm-marker>
      </agm-marker-cluster> 
      </agm-map>

这是我的解决方案(老实说,不是解决方案,但是有人可能遇到相同的问题,可以作为参考)

答案 1 :(得分:0)

在 HTML 文件中-----

<agm-map #gm [latitude]="latitude"
       [longitude]="longitude"
       [zoom]="zoom"
       (zoomChange)="changeMapZoom($event)"    ---> You need to add this
       >
    ....
    ....
</agm-map>

在 TS 文件中

changeMapZoom(e: any): any {
 this.zoom = e;   ---> here i set zoom level according to my need.
}

您可以在任何具有缩放级别值的函数中传递此函数。 例如。您需要搜索位置然后查看下面的代码。

this.mapsAPILoader.load().then(() => {
  this.setCurrentLocation();
  this.geoCoder = new google.maps.Geocoder();

  const autocomplete = new google.maps.places.Autocomplete(this.searchElementRef.nativeElement);
  autocomplete.addListener('place_changed', () => {
    this.ngZone.run(() => {
      // get the place result
      const place: google.maps.places.PlaceResult = autocomplete.getPlace();

      // verify result
      if (place.geometry === undefined || place.geometry === null) {
        return;
      }

      // set latitude, longitude and zoom
      this.latitude = place.geometry.location.lat();
      this.longitude = place.geometry.location.lng();
      this.changeMapZoom(18);        -------------> here i pass zoom level value
    });
  });
});

希望对大家有所帮助。 B'cos 经过一整天的查找和搜索,我得到了解决方案。

<块引用>

在 AGM 地图中更改位置、搜索位置。动态重置缩放。