Skip to content

Latest commit

 

History

History

map-traffic-layer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

MapTrafficLayer

The MapTrafficLayer component wraps the google.maps.TrafficLayer class from the Google Maps JavaScript API. autoRefresh is true by default.

Example

// google-maps-demo.component.ts
import {Component} from '@angular/core';
import {GoogleMap, MapTrafficLayer} from '@angular/google-maps';

@Component({
  selector: 'google-map-demo',
  templateUrl: 'google-map-demo.html',
  standalone: true,
  imports: [GoogleMap, MapTrafficLayer],
})
export class GoogleMapDemo {
  center: google.maps.LatLngLiteral = {lat: 24, lng: 12};
  zoom = 4;
}
<!-- google-maps-demo.component.html -->
<google-map height="400px" width="750px" [center]="center" [zoom]="zoom">
  <map-traffic-layer [autoRefresh]="false" />
</google-map>