To add multiple markers on a Google Map using Webflow and the Google Maps API, you can follow these steps:
1. Sign in to your Google account and access the Google Maps API documentation.
2. Obtain an API key by creating a new project in the Google Cloud Console and enabling the Google Maps JavaScript API.
3. Once you have your API key, head over to your Webflow project and open the page where you want to add the map.
4. Add an HTML Embed element to the section or container where you want the map to appear. You can find the Embed element in the Add panel on the left-hand side of the Webflow designer.
5. In the HTML Embed element, click on the settings icon, and choose "Edit Custom Code."
6. Inside the code editor, you will need to include the necessary HTML markup and JavaScript code to create the map and add multiple markers. Here's an example code snippet that you can use as a starting point:
```html
7. In the code snippet above, make sure to replace `YOUR_API_KEY` with your actual API key obtained from Google.
8. Adjust the `locations` array to include the desired latitude, longitude, and title for each marker you want to add. You can add as many locations as you need.
9. Customize the map's center and zoom level in the `map` object within the `initMap` function.
10. Save the changes in the HTML Embed element, and you should see the map with multiple markers displayed on your Webflow page.
By following these steps, you'll be able to integrate the Google Maps API and Webflow to create a map with multiple markers. Feel free to modify the code snippet to fit your specific design and functionality requirements.