Yes, if you don’t have too many locations, and you can create a src for each of them and store it in your DB collection, you can do it with embedded widget (iframe).
-
Copy the src url from the Google maps embedded code (see red circle in you screenshot) (after you set it to Hebrew). An example: https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3380.3993755043275!2d34.783080283819764!3d32.08549022622712!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x151d4b1a57740699%3A0xd94cd5d09ba11cf0!2sTel%20Aviv-Yafo%2C%20Israel!5e0!3m2!1siw!2sil!4v1636646017258!5m2!1siw!2sil
-
Add this src to your database (for the sake of the example, let set the field key to be mapSrc ).
-
Add this code to the dynamic page:
$w.onReady(() => {
$w('#dynamicDataset1').onReady(() => {
$w('#html1').src = $w('#dynamicDataset1').getCurrentItem().mapSrc;
})
})