Magnolias For Ever

A blooming magnolia tree with pale pink flowers stands in front of a beige townhouse with two grey doors and wrought iron balconies. The cobblestone street is lined with black metal fencing, while green and yellow recycling bins, forever adding color, are visible near the entrance.GPS Lat : 48.843494444444
GPS Lon : 2.4087666666667

function apaiu_InitializeGoogleMaps() {
var mapProp = {
center: new google.maps.LatLng(48.843494444444,2.4087666666667),
zoom: 12,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById(« apaiu_googleMapDiv »),mapProp);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(48.843494444444,2.4087666666667),
});
marker.setMap(map);
}
function apaiu_LoadGoogleMapsScript() {
var alreadyRegistered = false;
if (typeof google === « object »){
if (typeof google.maps === « object »){
alreadyRegistered = true;
}
}
if (alreadyRegistered){
apaiu_InitializeGoogleMaps();
} else {
var script = document.createElement(« script »);
script.src = « https://maps.googleapis.com/maps/api/js?key=AIzaSyCOQyfCc9LYnmSWWXhoqvIsot8avEsDqAU&callback=apaiu_InitializeGoogleMaps »;
document.body.appendChild(script);
}
}
window.onload = apaiu_LoadGoogleMapsScript;