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?
Set zoom and center attributes. For example.
<agm-map zoom="8" [center]="10.3207886, 123.90250049999997">
<agm-marker [latitude]="10.3207886" [longitude]="123.90250049999997"></agm-marker>
</agm-map>
center is usually to specify which area you want to concentrate on, according to it change zoom level