demarches-normaliennes/app/assets/javascripts/carte.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

2015-08-10 11:05:06 +02:00
//récupération de la position de l'entreprise
function initCarto() {
OSM = L.tileLayer("http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png", {
2015-11-12 10:51:53 +01:00
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
});
position = get_position();
var map = L.map("map", {
center: new L.LatLng(position.lat, position.lon),
zoom: 13,
layers: [OSM]
});
freeDraw = new L.FreeDraw({
mode: L.FreeDraw.MODES.CREATE
});
map.addLayer(freeDraw);
}
function get_position() {
2015-08-10 11:05:06 +02:00
var position;
$.ajax({
url: '/users/dossiers/' + dossier_id + '/carte/position',
2015-08-10 11:05:06 +02:00
dataType: 'json',
async: false
}).done(function (data) {
position = data
});
return position;
}
function get_ref_dossier() {
2015-08-10 11:05:06 +02:00
$.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) {
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;
}
}