InfoWindow Simple
Sample code for Woosmap Map JavaScript API
author(s):
Woosmap
HTML
<!DOCTYPE html>
<html>
<head>
<title>InfoWindow Simple</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<!-- jsFiddle will insert css and js -->
</head>
<body>
<!--The div element for the map -->
<div id="map"></div>
<script
src="https://sdk.woosmap.com/map/map.js?key=woos-e1e5490b-19d1-34f8-9955-fd5cfc8c880f&callback=initMap"
defer
></script>
</body>
</html>
CSS
/*
* Always set the map height explicitly to define the size of the div element
* that contains the map.
*/
#map {
height: 100%;
}
/*
* Optional: Makes the sample page fill the window.
*/
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
.info-content {
font-size: 14px;
max-width: 300px;
height: 100%;
}
.london-img {
background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/London_Skyline_%28125508655%29.jpeg/556px-London_Skyline_%28125508655%29.jpeg");
width: 100%;
height: 90px;
background-size: cover;
}
JavaScript
// This example displays a marker at the center of London.
// When the user clicks the marker, an info window opens.
function initMap() {
// The map, centered at London
const map = new woosmap.map.Map(document.getElementById("map"), {
zoom: 10,
center: {
lat: 51.57,
lng: -0.13,
},
});
const londonInfoWindowHTML =
"<div class='info-content'>" +
"<h2>London</h2>" +
"<div class='london-img'></div>" +
"<p>London is the capital and largest city of England and the United Kingdom. <a href='https://en.wikipedia.org/wiki/London'>Wikipedia →</a></p>" +
"</div>";
const marker = new window.woosmap.map.Marker({
position: {
lat: 51.515,
lng: -0.13,
},
icon: {
url: "https://images.woosmap.com/marker.png",
scaledSize: {
height: 50,
width: 32,
},
},
map,
});
const infoWindow = new woosmap.map.InfoWindow({});
infoWindow.setOffset(new woosmap.map.Point(0, -50));
infoWindow.setContent(londonInfoWindowHTML);
infoWindow.open(map, marker.position);
marker.addListener("click", () => {
infoWindow.open(map, marker.getPosition());
});
}
window.initMap = initMap;