Le printemps est arrivé

A tree with vibrant pink blossoms stands in a park, surrounded by a neatly trimmed hedge. People sit on benches nearby. In the background, there is a historic building with arched windows under a cloudy sky.

L’arrivée du printemps

A vibrant cherry blossom tree with pink flowers in full bloom stands in the foreground, surrounded by bare trees and bushes, heralding the arrivée of printemps. Behind it, cars are parked along a street lined with red-brick apartment buildings. The sky is overcast.

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;