Base Map Styling - Google Maps

Cloud-based maps styling overview | Maps JavaScript API | Google for DevelopersGoogle for DevelopersLast updated
Was this helpful?

Cloud-based maps styling overview | Maps JavaScript API | Google for DevelopersGoogle for DevelopersLast updated
Was this helpful?
Was this helpful?
// main.js
const mapViewOptions = {
element: document.getElementById('map'),
// your other map options here
mapId: "8e0a97af9386fef",
};
const mapViewInstance = new mapsindoors.mapView.GoogleMapsView(mapViewOptions);// main.js
const mapViewOptions = {
element: document.getElementById('map'),
// your other map options here
styles: [
{
"featureType": "poi",
"stylers": [
{
"visibility": "off"
}
]
}
],
};
const mapViewInstance = new mapsindoors.mapView.GoogleMapsView(mapViewOptions);