# Javascript

Here, you can add a Javascript function that should be run after the map has done initializing. This is a simple way to hook into any given map and manipulate displays or controls as you need.

{% hint style="info" %}
If you need more advanced hooks with Javascript, check out the Developer section on [hooks](/developer/hooks.md).
{% endhint %}

Enter the name of a function here. For example, let's call our function "myCustomScript".

Create a global function with that script name. Your script will automatically receive a "map" and a "features" variable. For Maplibre and Mapbox, this will be a map object matching those libraries; for Google Maps, it'll be a map object matching the Google Maps API. As follows:

```
window.myCustomScript = function(map, features) {
	console.log(map);
	console.log(features);
}
```

{% embed url="<https://www.youtube.com/watch?v=ZAuJYJ6IoA8>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wpmaps-docs.mapster.me/maps/developer/javascript.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
