<!DOCTYPE html>
<!--
 Copyright 2020 Google LLC

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-->

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>MarkerWithLabel Mouse Events</title>
    <style type="text/css">
      .labels {
        color: red;
        background-color: white;
        font-family: "Lucida Grande", "Arial", sans-serif;
        font-size: 10px;
        font-weight: bold;
        text-align: center;
        width: 40px;
        border: 2px solid black;
        white-space: nowrap;
      }
    </style>
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBIwzALxUPNbatRBj3Xi1Uhp0fFzwWNBkE"></script>
    <script src="../dist/index.dev.js"></script>
    <script>
      function initMap() {
        var latLng = new google.maps.LatLng(49.47805, -123.84716);
        var homeLatLng = new google.maps.LatLng(49.47805, -123.84716);

        var map = new google.maps.Map(document.getElementById("map_canvas"), {
          zoom: 12,
          center: latLng,
          mapTypeId: google.maps.MapTypeId.ROADMAP,
        });

        var marker = new MarkerWithLabel({
          position: homeLatLng,
          draggable: true,
          raiseOnDrag: true,
          map: map,
          labelContent: "$425K",
          labelAnchor: new google.maps.Point(22, 0),
          labelClass: "labels", // the CSS class for the label
        });

        var iw = new google.maps.InfoWindow({
          content: "Home For Sale",
        });
        google.maps.event.addListener(marker, "click", function (e) {
          iw.open(map, this);
        });

        google.maps.event.addListener(marker, "click", function (e) {
          log("Click");
        });
        google.maps.event.addListener(marker, "dblclick", function (e) {
          log("Double Click");
        });
        google.maps.event.addListener(marker, "mouseover", function (e) {
          log("Mouse Over");
        });
        google.maps.event.addListener(marker, "mouseout", function (e) {
          log("Mouse Out");
        });
        google.maps.event.addListener(marker, "mouseup", function (e) {
          log("Mouse Up");
        });
        google.maps.event.addListener(marker, "mousedown", function (e) {
          log("Mouse Down");
        });
        google.maps.event.addListener(marker, "dragstart", function (mEvent) {
          log("Drag Start: " + mEvent.latLng.toString());
        });
        google.maps.event.addListener(marker, "drag", function (mEvent) {
          log("Drag: " + mEvent.latLng.toString());
        });
        google.maps.event.addListener(marker, "dragend", function (mEvent) {
          log("Drag End: " + mEvent.latLng.toString());
        });
      }

      function log(h) {
        document.getElementById("log").innerHTML += h + "<br />";
      }
    </script>
  </head>
  <body onload="initMap()">
    <p>
      Try interacting with the marker (mouseover, mouseout, click, double-click,
      mouse down, mouse up, drag) to see a log of events that are fired. Events
      are fired whether you are interacting with the marker portion or the label
      portion.
    </p>
    <div id="map_canvas" style="height: 400px; width: 100%"></div>
    <div id="log"></div>
  </body>
</html>