react-hotels-on-map
Version:
Presents a set of hotels as clustered markers on Google Map, each with an info window displaying the hotel summary
18 lines (15 loc) • 420 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
/* global global */
exports.default = function () {
return {
zoom: 7,
maxZoom: 19,
center: { lat: 46.8348, lng: 8.21745 },
scrollwheel: false,
mapTypeId: global.window.google.maps.MapTypeId.ROADMAP,
styles: [{ featureType: 'poi.business', stylers: [{ visibility: 'off' }] }]
};
};