If you're using a Webflow map clone (like a Google Maps embed with custom code), you can change the map location or coordinates by editing the embedded custom code in the Webflow project.
tag custom code section (or check the Embed element on the canvas if the map was added via an Embed block).
center: { lat: 40.7128, lng: -74.0060 }
— this is typical for Google Maps JavaScript.<iframe>
), it might look like:https://www.google.com/maps/embed?...¢er=40.7128,-74.0060
lat
and lng
values with your desired coordinates.center: { lat: 51.5074, lng: -0.1278 }
for London.center
, q
, or coordinate parameter in the URL....src="https://www.google.com/maps/embed?...&q=51.5074,-0.1278"
To change the map location in a Webflow map clone, locate the embedded code (either in an Embed block or page settings), find the existing coordinates or location URL, replace them with new latitude and longitude values, then publish your site to see the update.