Interactive maps

Mobile-friendly interactive maps powered by Leaflet.js.

Finder component

Basic example (no options passed)

<!-- Basic map example (no options passed) -->
<google-map [latitude]="52.128973" [longitude]="20.728218" style="height: 400px"></google-map>

Inline options: Default marker + alternative map style

<!-- Inline options: Default marker + alternative map style -->
<google-map  [options]="mapOptions" style="height: 400px" >
  <map-marker *ngFor="let marker of markers" [position]="marker.position"></map-marker>
</google-map>
Top