{"version":3,"file":"CommunityMap-DAp5Bcfa.js","sources":["../../ClientApp/src/js/components/CommunityMap.ts"],"sourcesContent":["let map: google.maps.Map;\r\n\r\nexport async function initMap(infoWindowId: string | null | undefined = null): Promise {\r\n try {\r\n const mapElements = document.querySelectorAll('.js-community-map') as NodeListOf;\r\n\r\n if (!mapElements.length) {\r\n console.warn('No map elements detected');\r\n return;\r\n }\r\n\r\n const position = { lat: 48.0365, lng: -122.1132 };\r\n\r\n const { Map } = (await google.maps.importLibrary('maps')) as google.maps.MapsLibrary;\r\n const { AdvancedMarkerElement } = (await google.maps.importLibrary('marker')) as google.maps.MarkerLibrary;\r\n\r\n // Loop through each map element and initialize a map\r\n mapElements.forEach((mapElement) => {\r\n const map = new Map(mapElement, {\r\n zoom: 16,\r\n center: position,\r\n mapId: 'js-community-map',\r\n disableDefaultUI: true,\r\n });\r\n\r\n const circle = document.createElement('div');\r\n circle.className = 'circle-map-marker';\r\n circle.textContent = '';\r\n\r\n const marker = new AdvancedMarkerElement({\r\n map: map,\r\n position: position,\r\n title: 'Redstone at Whiskey Ridge',\r\n content: circle,\r\n });\r\n\r\n if (infoWindowId) {\r\n const infoWindow = document.getElementById(infoWindowId);\r\n\r\n if (infoWindow) {\r\n infoWindow?.classList.toggle('active');\r\n } \r\n }\r\n });\r\n } catch (error) {\r\n console.error('Failed to initialize maps:', error);\r\n }\r\n}\r\n"],"names":["initMap","infoWindowId","mapElements","position","Map","AdvancedMarkerElement","mapElement","map","circle","marker","infoWindow","error"],"mappings":"AAEsB,eAAAA,EAAQC,EAA0C,KAAqB,CACrF,GAAA,CACM,MAAAC,EAAc,SAAS,iBAAiB,mBAAmB,EAE7D,GAAA,CAACA,EAAY,OAAQ,CACrB,QAAQ,KAAK,0BAA0B,EACvC,MACJ,CAEA,MAAMC,EAAW,CAAE,IAAK,QAAS,IAAK,WAEhC,CAAE,IAAAC,CAAI,EAAK,MAAM,OAAO,KAAK,cAAc,MAAM,EACjD,CAAE,sBAAAC,CAAsB,EAAK,MAAM,OAAO,KAAK,cAAc,QAAQ,EAG/DH,EAAA,QAASI,GAAe,CAC1BC,MAAAA,EAAM,IAAIH,EAAIE,EAAY,CAC5B,KAAM,GACN,OAAQH,EACR,MAAO,mBACP,iBAAkB,EAAA,CACrB,EAEKK,EAAS,SAAS,cAAc,KAAK,EAC3CA,EAAO,UAAY,oBACnBA,EAAO,YAAc,GAEf,MAAAC,EAAS,IAAIJ,EAAsB,CACrC,IAAKE,EACL,SAAAJ,EACA,MAAO,4BACP,QAASK,CAAA,CACZ,EAED,GAAIP,EAAc,CACR,MAAAS,EAAa,SAAS,eAAeT,CAAY,EAEnDS,IACYA,GAAA,MAAAA,EAAA,UAAU,OAAO,UAErC,CAAA,CACH,QACIC,EAAO,CACJ,QAAA,MAAM,6BAA8BA,CAAK,CACrD,CACJ"}