{f:translate(key:'no_google_maps_key')}
{f:if(condition:address.title,then: '{address.title} ')}{address.firstName} {f:if(condition:address.middleName,then: '{address.middleName} ')} {address.lastName}
{address.description -> f:format.nl2br()}
bei Google Maps anzeigen
initMap("
map{address.uid}
", {lat:
{address.latitude}
, lng:
{address.longitude}
})
function initMap(mapID, addressLatLng) { //var mapID = '
map{address.uid}
'; //var addressLatLng = {lat:
{address.latitude}
, lng:
{address.longitude}
}; var map = new google.maps.Map(document.getElementById(mapID), { center: addressLatLng, zoom: 15, disableDefaultUI: true, zoomControl: true, }) var marker = new google.maps.Marker({ position: addressLatLng }); marker.setMap(map); }