Is there a way to use Google Maps API or another tool to set the zoom? When i put that code (above), the location appears so tiny. Please. Help!
Sorry for my english.
here is the code that i´m using:
$w.onReady( function () {
$w("#dynamicDataset").onReady( () => {
let currentItem = $w("#dynamicDataset").getCurrentItem();
$w("#googleMaps1").location = {
"latitude": currentItem.latitude,
"longitude": currentItem.longitude,
"description": currentItem.nome,
};
} );
} );