
//----------------------------------------------------------------------------//
//
//----------------------------------------------------------------------------//
jQuery(document).ready(function($)
{
    initialize();
    
    // s'il y a des données dans le formulaire => on créé le marker
	lat = $("#localisation_lat").val();
	lon = $("#localisation_long").val();
    
    content = $("#localisation_content_bulle").val();
    
    if(lat != '' && lon != ''){
    
        var point = new GLatLng(lat, lon);
        createMarker(point, false, content);
    }
    
});

