79451679

Date: 2025-02-19 14:25:50
Score: 0.5
Natty:
Report link

add disableDefaultUI: true when creating the map:

this.newMap = await GoogleMap.create({
  id: 'my-test-map',
  element: this.mapRef.nativeElement,
  apiKey: environment.mapsApiKey,
  config: {
  center: {
    lat: lat,
    lng: lng,
  },
  zoom: 15,
  disableDefaultUI: true <-------
  },
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: StackOverHoes