I am using agm/core
in displaying the coordinates of a map. I have the code below
<agm-map [latitude]="10.3207886" [longitude]="123.90250049999997">
<agm-marker [latitude]="10.3207886 [longitude]="123.90250049999997"></agm-marker>
</agm-map>
The view is this:
But I want to initially show the streets like this:
How to do that?
The update for agm-map does not support center directives anymore. use zoom and latitude and long instead.
<agm-map [zoom]="13" [latitude]="127.1" [longitude]="141.1">
<agm-marker [latitude]="127.1" [longitude]="141.1"></agm-marker>
</agm-map>