I’m not sure really depending on what the third party code is like/used for specifically. I just made up this quick example site for you to see using google maps to demonstrate how I’d use the code I put before to display maps in editor x:
https://themusingsofmaars.editorx.io/mysite-1/maps
So that first page shows your list of maps, but you won’t be able to actually show them here as embedded maps. If I was making this website for real I’d probably take a screenshot image of each map or a photo of the place and use that image as a thumbnail and link it to the dynamic pages instead of a simple button link as I’ve used here.
Then on the dynamic pages are the actual maps.
Codewise I literally just took the embed code from Google Maps to make a stock iframe element on the dynamic page such as:
Then in the page code for the dynamic (Title) page I used this:
$w.onReady( () => {
$w( " #dynamicDataset " ).onReady( () => {
const itemUrl = $w( ’ #dynamicDataset ’ ).getCurrentItem().embed;
$w( ’ #m aps’ ).src = itemUrl;
} );
} );
And this time
maps = the google maps iframe element
embed = the title of my text field in the database
In that database I used the map codes generated from Google Maps except you only include the part from inside the “”. So in the example map above I’d enter just this part:
https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3036.9587739884755!2d116.56818621556353!3d40.43191176263967!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x35f121d7687f2ccf%3A0xd040259b950522df!2sGreat%20Wall%20of%20China!5e0!3m2!1sen!2suk!4v1613572188817!5m2!1sen!2suk
So that’s how I made my quick demonstration map site, but depending on what third party stuff you are using for your maps I’m not sure how that would translate for your purposes? But perhaps it’ll help us figure out what you need to do next in your situation and we can go from there! ![]()