You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`<agm-map
[latitude]="lat"
[longitude]="lng"
[zoom]="zoom"
style="height: 100%; width: 100%;">
<agm-marker *ngFor="let d of markers"
(markerClick)="clickedMarker()"
[latitude]="d.lat"
[longitude]="d.lng"
[visible]="d.visible"
[iconUrl]="d.icon"
[animation]="d.animation">
</agm-marker>
<agm-direction
*ngFor="let dir of current_route"
[origin]="dir.origin"
[destination]="dir.destination"
travelMode="DRIVING"
[renderOptions]="renderOptions">
</agm-direction>
</agm-map>`
when adding a new address the map zoom increases by itself, despite having the fixed zoom at 18.
How can i avoid this problem?
The text was updated successfully, but these errors were encountered:
explooosion
added
bug
Indicates an unexpected problem or unintended behavior
and removed
bug
Indicates an unexpected problem or unintended behavior
labels
Feb 7, 2020
i have the following code:
when adding a new address the map zoom increases by itself, despite having the fixed zoom at 18.
How can i avoid this problem?
The text was updated successfully, but these errors were encountered: