Map Events

Handling map events triggered by user interaction

  1. Example
  2. Running the Sample Locally

Example

Map Events
        const events: string[] = [
  "bounds_changed",
  "center_changed",
  "click",
  "dblclick",
  "drag",
  "dragend",
  "dragstart",
  "idle",
  "mousemove",
  "mouseout",
  "mouseover",
  "rightclick",
  "zoom_changed",
];

function initMap(): void {
  const map = new woosmap.map.Map(
    document.getElementById("map") as HTMLElement,
    {
      center: {
        lat: 51.52,
        lng: -0.13,
      },
      zoom: 10,
    },
  );

  populateEventsTable();
  events.forEach((event: string) => {
    map.addListener(event, () => {
      setupListener(event);
    });
  });
}

function populateEventsTable(): void {
  const eventsTable = document.getElementById("sidebar") as HTMLElement;
  const content: string[] = [];
  events.forEach((event: string) => {
    content.push(`<div class="event" id="${event}">${event}</div>`);
  });
  eventsTable.innerHTML = content.join("");
}

function setupListener(name: string): void {
  const eventRow = document.getElementById(name) as HTMLElement;
  if (eventRow) {
    eventRow.className = "event active";
    setTimeout(() => {
      eventRow.className = "event inactive";
    }, 1000);
  }
}

declare global {
  interface Window {
    initMap: () => void;
  }
}
window.initMap = initMap;

    
        const events = [
  "bounds_changed",
  "center_changed",
  "click",
  "dblclick",
  "drag",
  "dragend",
  "dragstart",
  "idle",
  "mousemove",
  "mouseout",
  "mouseover",
  "rightclick",
  "zoom_changed",
];

function initMap() {
  const map = new woosmap.map.Map(document.getElementById("map"), {
    center: {
      lat: 51.52,
      lng: -0.13,
    },
    zoom: 10,
  });

  populateEventsTable();
  events.forEach((event) => {
    map.addListener(event, () => {
      setupListener(event);
    });
  });
}

function populateEventsTable() {
  const eventsTable = document.getElementById("sidebar");
  const content = [];

  events.forEach((event) => {
    content.push(`<div class="event" id="${event}">${event}</div>`);
  });
  eventsTable.innerHTML = content.join("");
}

function setupListener(name) {
  const eventRow = document.getElementById(name);

  if (eventRow) {
    eventRow.className = "event active";
    setTimeout(() => {
      eventRow.className = "event inactive";
    }, 1000);
  }
}

window.initMap = initMap;

    
        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;
}

#container {
  height: 100%;
  display: flex;
}

#sidebar {
  flex-basis: 12rem;
  flex-grow: 1;
  max-width: 30rem;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
}

#map {
  flex-basis: 70vw;
  flex-grow: 5;
  height: 100%;
}

.events {
  font-family: "Droid Sans Mono", monospace;
}

.event {
  transition: background-color 0.5s ease-out;
  padding: 0.5em;
  overflow: hidden;
  font-size: 14px;
}

.active {
  background-color: #ffdd00;
  color: #000;
}

.inactive {
  background-color: white;
}


    
        <html>
  <head>
    <title>Map Events</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8" />

    <link rel="stylesheet" type="text/css" href="./style.css" />
    <script type="module" src="./index.js"></script>
  </head>
  <body>
    <div id="container">
      <div id="map"></div>
      <div class="events" id="sidebar"></div>
    </div>

    <script
      src="https://sdk.woosmap.com/map/map.js?key=woos-48c80350-88aa-333e-835a-07f4b658a9a4&callback=initMap"
      defer
    ></script>
  </body>
</html>

    

Running the Sample Locally

Before you can run this sample on your local machine, you need to have Git and Node.js installed. If they’re not already installed, follow these instructions to get them set up.

Once you have Git and Node.js installed, you can run the sample by following these steps:

  1. Clone the repository and navigate to the directory of the sample.

  2. Install the necessary dependencies.

  3. Start running the sample.

Here are the commands you can use in your terminal to do this:

Shell
        git clone -b sample/map-events https://github.com/woosmap/js-samples.git
cd js-samples
npm i
npm start

    

You can experiment with other samples by switching to any branch that starts with the pattern sample/SAMPLE_NAME.

Shell
        git checkout sample/SAMPLE_NAME
npm i
npm start

    
Was this article helpful?
Have more questions? Submit a request