2015-08-10 11:05:06 +02:00
|
|
|
//récupération de la position de l'entreprise
|
|
|
|
|
|
|
|
function get_position(){
|
|
|
|
var position;
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: '/dossiers/'+dossier_id+'/carte/position',
|
|
|
|
dataType: 'json',
|
|
|
|
async: false
|
|
|
|
}).done(function (data) {
|
|
|
|
position = data
|
|
|
|
});
|
|
|
|
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_ref_dossier (){
|
|
|
|
$.post("http://apicarto.coremaps.com/api/v1/datastore", {
|
|
|
|
contentType: "application/json",
|
|
|
|
dataType: 'json',
|
|
|
|
geom: JSON.stringify(window.featureCollection.features[0]),
|
|
|
|
ascyn: false
|
|
|
|
}).done(function (data) {
|
|
|
|
$("#ref_dossier").val(data.reference);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function submit_check_draw(e) {
|
2015-08-12 10:38:34 +02:00
|
|
|
if (window.location.href.indexOf('carte') > -1 && window.featureCollection.features.length == 0) {
|
2015-08-10 11:05:06 +02:00
|
|
|
$("#flash_message").html('<div class="alert alert-danger">Un dessin est obligatoire.</div>');
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|