@randstad-design/orbit-multitheme
Version:
multitheme Front-end code based on Randstad Human Forward components
86 lines (83 loc) • 1.25 kB
JavaScript
export class MapStyle {
static get custom() {
return [
{
'featureType': 'administrative.land_parcel',
'stylers': [
{
'visibility': 'off'
}
]
},
{
'featureType': 'administrative.locality',
'elementType': 'labels',
'stylers': [
{
'visibility': 'simplified'
}
]
},
{
'featureType': 'administrative.neighborhood',
'stylers': [
{
'visibility': 'off'
}
]
},
{
'featureType': 'administrative.province',
'elementType': 'labels',
'stylers': [
{
'visibility': 'off'
}
]
},
{
'featureType': 'landscape.natural',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#f7f5f0'
}
]
},
{
'featureType': 'poi',
'elementType': 'labels.text',
'stylers': [
{
'visibility': 'off'
}
]
},
{
'featureType': 'poi.business',
'stylers': [
{
'visibility': 'off'
}
]
},
{
'featureType': 'transit',
'stylers': [
{
'visibility': 'off'
}
]
},
{
'featureType': 'water',
'elementType': 'labels.text',
'stylers': [
{
'visibility': 'off'
}
]
}
]
}
}