Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 820 Bytes

File metadata and controls

29 lines (24 loc) · 820 Bytes

MapBicyclingLayer

The MapBicyclingLayer component wraps the google.maps.BicyclingLayer class from the Google Maps JavaScript API.

Example

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

@Component({
  selector: 'google-map-demo',
  templateUrl: 'google-map-demo.html',
  standalone: true,
  imports: [GoogleMap, MapBicyclingLayer],
})
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-bicycling-layer />
</google-map>