<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes">
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Opening an Infobubble on a Mouse Click</title>
<link rel="stylesheet" type="text/css" href="https://js.api.here.com/v3/3.1/mapsjs-ui.css" />
<link rel="stylesheet" type="text/css" href="demo.css" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="stylesheet" type="text/css" href="../template.css" />
<script type="text/javascript" src='../test-credentials.js'></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-core.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-service.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-ui.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-mapevents.js"></script>
<script>window.ENV_VARIABLE = 'developer.here.com'</script><script src='../iframeheight.js'></script></head>
<body id="markers-on-the-map">
<div class="page-header">
<h1>Opening an Infobubble on a Mouse Click</h1>
<p>Open an infobubble when a marker is clicked</p>
</div>
<p>This example displays a map with two markers showing the position
of <b>Liverpool</b> and <b>Manchester City</b> football clubs. Clicking on a
marker opens an infobubble which holds HTML content related to the marker.</p>
<div id="map"></div>
<h3>Code</h3>
<p>Infobubble opens on <code>tap</code> event, event delegation is used to add event listener to the group that holds markers.
<code>setData/getData</code> methods on the map objects are used to bind custom data.</p>
<script type="text/javascript" src='demo.js'></script>
</body>
</html>