UNPKG

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

15 lines (12 loc) 322 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /* global global */ exports.default = function (_ref) { var latitude = _ref.latitude, longitude = _ref.longitude; return new global.window.google.maps.Marker({ position: { lat: latitude, lng: longitude } }); };