Orthopaedic Care in Athens, AL
const style = “standard-light”;
				const envId = “4020d979-9f08-403a-8762-4287e0aefd9b”;
				const map = new maplibregl.Map({
					container: “pdir-map-element”,
					style: `https://freshpaint-hipaa-maps.com/${envId}/${style}/style-descriptor`,
					center: [-86.9228812, 34.7797449],
					zoom: 13,
					cooperativeGestures: true,
				});
map.addControl(new maplibregl.NavigationControl(), “bottom-right”);
				const markers = [
					{
						“LngLat”: [-86.9228812, 34.7797449],
						“Header”: “Orthopaedic Care in Athens, AL”,
						“LocationDetails”: “22454 US Highway 72Suite 200Athens, AL 35613”
					},
				];
				const newPopup = (m) =new maplibregl.Popup({ offset: 25 })
					.setHTML(`
						${m.Header}${m.LocationDetails}
					`);
				markers.forEach((m) ={
					const popup = newPopup(m);
					const marker = new maplibregl.Marker({color: “#DC3545”})
						.setLngLat(m.LngLat)
						.setPopup(popup)
						.addTo(map); … Continue reading Orthopaedic Care in Athens, AL
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed