geolocation-8.x-3.x-dev/modules/geolocation_google_maps/js/MapFeature/GoogleLayerTransit.js
modules/geolocation_google_maps/js/MapFeature/GoogleLayerTransit.js
import { GoogleMapFeature } from "./GoogleMapFeature.js";
export default class GoogleLayerTransit extends GoogleMapFeature {
constructor(settings, map) {
super(settings, map);
const trafficLayer = new google.maps.TransitLayer();
trafficLayer.setMap(this.map.googleMap);
}
}
