/*! ========================================================= * Argon Dashboard React - v1.2.4 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-react * Copyright 2024 Creative Tim (https://www.creative-tim.com) * Licensed under MIT (https://github.com/creativetimofficial/argon-dashboard-react/blob/master/LICENSE.md) * Coded by Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ import React from "react"; // reactstrap components import { Card, Container, Row } from "reactstrap"; // core components import Header from "components/Headers/Header.js"; const MapWrapper = () => { const mapRef = React.useRef(null); React.useEffect(() => { let google = window.google; let map = mapRef.current; let lat = "40.748817"; let lng = "-73.985428"; const myLatlng = new google.maps.LatLng(lat, lng); const mapOptions = { zoom: 12, center: myLatlng, scrollwheel: false, zoomControl: true, styles: [ { featureType: "administrative", elementType: "labels.text.fill", stylers: [{ color: "#444444" }], }, { featureType: "landscape", elementType: "all", stylers: [{ color: "#f2f2f2" }], }, { featureType: "poi", elementType: "all", stylers: [{ visibility: "off" }], }, { featureType: "road", elementType: "all", stylers: [{ saturation: -100 }, { lightness: 45 }], }, { featureType: "road.highway", elementType: "all", stylers: [{ visibility: "simplified" }], }, { featureType: "road.arterial", elementType: "labels.icon", stylers: [{ visibility: "off" }], }, { featureType: "transit", elementType: "all", stylers: [{ visibility: "off" }], }, { featureType: "water", elementType: "all", stylers: [{ color: "#5e72e4" }, { visibility: "on" }], }, ], }; map = new google.maps.Map(map, mapOptions); const marker = new google.maps.Marker({ position: myLatlng, map: map, animation: google.maps.Animation.DROP, title: "Light Bootstrap Dashboard PRO React!", }); const contentString = '

Light Bootstrap Dashboard PRO React

' + "

A premium Admin for React-Bootstrap, Bootstrap, React, and React Hooks.

"; const infowindow = new google.maps.InfoWindow({ content: contentString, }); google.maps.event.addListener(marker, "click", function () { infowindow.open(map, marker); }); }, []); return ( <>
); }; const Maps = () => { return ( <>
{/* Page content */}
); }; export default Maps;