Source: https://developers.woosmap.com/js-samples/event-simple/

> For clean Markdown of any page, append `.md` to the page URL.

> For a complete documentation index, see https://developers.woosmap.com/llms.txt

# Handling Events



## Example

https://demo.woosmap.com/js-samples/samples/event-simple/app/dist/
[](https://demo.woosmap.com/js-samples/samples/event-simple/highlight/highlight.html "Open in new tab with highlighted code")
Try sample 

- [CodeSandbox](https://codesandbox.io/p/devbox/github/woosmap/js-samples/tree/master/dist/samples/event-simple/app?file=index.ts)
- [JsFiddle](https://jsfiddle.net/gh/get/library/pure/woosmap/js-samples/tree/master/dist/samples/event-simple/jsfiddle)
- [Clone on Github](https://github.com/Woosmap/js-samples/tree/sample/event-simple)

```typescript
function initMap() {
  const position: woosmap.map.LatLngLiteral = {
    lat: 51.50940214,
    lng: -0.133012,
  };
  const map = new woosmap.map.Map(
    document.getElementById("map") as HTMLElement,
    {
      zoom: 13,
      center: position,
    },
  );
  const marker = new woosmap.map.Marker({
    position: map.getCenter(),
    icon: {
      url: "https://images.woosmap.com/marker.png",
      scaledSize: {
        height: 50,
        width: 32,
      },
    },
  });
  marker.setMap(map);
  map.addListener("click", ({ latlng }) => {
    map.panTo(latlng);
  });
  map.addListener("idle", () => {
    marker.setPosition(map.getCenter());
  });
  marker.addListener("click", () => {
    marker.setIcon({
      url: "https://images.woosmap.com/icons/pin-green.png",
      scaledSize: {
        height: 42,
        width: 28,
      },
    });
  });
}

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

```javascript
function initMap() {
  const position = {
    lat: 51.50940214,
    lng: -0.133012,
  };
  const map = new woosmap.map.Map(document.getElementById("map"), {
    zoom: 13,
    center: position,
  });
  const marker = new woosmap.map.Marker({
    position: map.getCenter(),
    icon: {
      url: "https://images.woosmap.com/marker.png",
      scaledSize: {
        height: 50,
        width: 32,
      },
    },
  });

  marker.setMap(map);
  map.addListener("click", ({ latlng }) => {
    map.panTo(latlng);
  });
  map.addListener("idle", () => {
    marker.setPosition(map.getCenter());
  });
  marker.addListener("click", () => {
    marker.setIcon({
      url: "https://images.woosmap.com/icons/pin-green.png",
      scaledSize: {
        height: 42,
        width: 28,
      },
    });
  });
}

window.initMap = initMap;
```

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

```html
<html>
  <head>
    <title>Handling 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="map"></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](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) 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/event-simple 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
```
