Accueil > > > GEOLOCALISATION VIA GOOGLE MAP. COMPOSANT EXTJS 3.3.1
GEOLOCALISATION VIA GOOGLE MAP. COMPOSANT EXTJS 3.3.1
Information sur la source
Description
Les possibilités: - Géolocalisation via un popup - Drag & Drop du pointeur pour le positionnement précis - Présélection de la position (adresse, commune, département , région, pays, lat, lng) - Modification manuel de l'adresse trouver sur la carte ( Il arrive par fois que l'adresse fournis par Google n'est pas correct. Ce composant permets de rectifier l'adresse manuellement) - Auto-zoom en fonction des résultats - Supporté par: IE >= 8 ; FF, Chrome(conseillé ;))
Source
- Ext.namespace('JSF');
- Ext.namespace('JSF.Components');
-
- JSF.Components.JSF_Geo = Ext.extend(Ext.Window, {
-
- title: 'Recherche et localisation',
- width: 860,
- modal: true,
- closeAction: 'hide',
- closable: true,
- resizable: false,
-
- //ressources
- litEmptyText: 'Champ de recherche',
- litSearch: 'Rechercher',
-
- _initialised: false,
-
- defaultAdsres: undefined,
- defaultPoint: new google.maps.LatLng(46.227638, 2.213749), // FRANCE
- defaultZoom: 5,
-
- value: undefined,
-
- setValue: function (v) {
- var me = this;
-
- var emptyV = {
- adr: '', commune: '', cp: '', departement: '', region: '', pays: '', lat: '', lng: '',
-
- update: function (v) {
- Ext.apply(this, v);
- },
-
- toString: function () {
- var res = '';
- res += this.adr;
- if (this.commune && this.commune != '') res += (res == '' ? '' : ', ') + this.commune;
- if (this.cp && this.cp != '') res += (res == '' ? '' : ', ') + this.cp;
- if (this.departement && this.departement != '') res += (res == '' ? '' : ', ') + this.departement;
- if (this.region && this.region != '') res += (res == '' ? '' : ', ') + this.region;
- if (this.pays && this.pays != '') res += (res == '' ? '' : ', ') + this.pays;
- return res;
- },
-
- positionExist: function () {
- return this.lat != undefined && this.lat != ''
- && this.lng != undefined && this.lng != ''
- },
-
- addresExist: function () {
- return (this.adr != undefined && this.adr != '')
- || (this.commune != undefined && this.commune != '')
- || (this.departement != undefined && this.departement != '')
- || (this.region != undefined && this.region != '')
- || (this.commune != undefined && this.commune != '')
- || (this.cp != undefined && this.cp != '')
- || (this.pays != undefined && this.pays != '')
-
- },
-
- getZoom: function () {
- if (this.adr != "") return 16;
- else if (this.commune != "") return 12;
- else if (this.departement != "") return 9;
- else if (this.region != "") return 8;
- else if (this.pays != "") return 6;
- else return undefined;
- },
-
- getLatLng: function () {
- return this.positionExist() ? (new google.maps.LatLng(this.lat, this.lng)) : undefined;
- },
-
- parseFromGInfo: function (gInfo) {
- this.parsePositionFromGInfo(gInfo);
- this.parseAddressFromGInfo(gInfo);
- },
-
- parsePositionFromGInfo: function (gInfo) {
-
- this.lat = gInfo.geometry.location.lat();
- this.lng = gInfo.geometry.location.lng();
- },
-
- parseAddressFromGInfo: function (gInfo) {
- if (gInfo.address_components) {
- // parse adresse
- this.adr = this.commune = this.cp = this.region = this.departement = this.pays = "";
-
- for (var i = 0; i < gInfo.address_components.length; i++) {
- var itemAdr = gInfo.address_components[i];
- var type = itemAdr.types[0];
-
- switch (type) {
- case 'street_number':
- this.adr = itemAdr.long_name + (this.adr == '' ? '' : ', ') + this.adr;
- break;
-
- case 'route':
- this.adr += (this.adr == '' ? '' : ', ') + itemAdr.long_name;
- break;
-
- case 'locality':
- this.commune = itemAdr.long_name;
- break;
-
- case 'postal_code':
- this.cp = itemAdr.long_name;
- break;
-
- case 'administrative_area_level_1':
- this.region = itemAdr.long_name;
- break;
-
- case 'administrative_area_level_2':
- this.departement = itemAdr.long_name;
- break;
-
- case 'country':
- this.pays = itemAdr.long_name;
- break;
- }
- }
- }
- }
- };
-
- emptyV.update(v || {});
- this.value = emptyV;
- this.refresh();
- },
-
- refresh: function(){
- var me = this;
- if (this._initialised == true) {
-
- if (this.value.positionExist()) {
- // si la position est definis
-
- if (!this.value.addresExist()) this.getAddress(function () {
- me.MarkerRefresh();
- });
- else this.MarkerRefresh();
-
- } else if (this.value.addresExist()) {
- // si l'adresse n'est pas vide
- this.getLocation(this.value.toString());
- } else {
- //si ni l'adresse ni coordonées
- this.MarkerRefresh();
- }
-
- }
- },
-
- getValue: function () {
- return this.value;
- },
-
-
- initComponent: function () {
- var me = this;
- this.setValue(this.value);
-
-
- this.html = '<div id="' + this.id + "_gmap_content" + '" style="height:500px;"></div>';
-
-
- this.tbar = [
- '->',
- { xtype: 'textfield', emptyText: this.litEmptyText, width: this.width - 50, id: me.id + '_txtSearch',
- listeners: {
- specialkey: function (f, e) {
- if (e.getKey() == e.ENTER) {
- var txtSearch = Ext.getCmp(me.id + '_txtSearch');
- var str = txtSearch.getValue();
- me.getLocation(str, true);
- }
- }
- }
- },
- { xtype: 'spacer', width: 5 },
- {
- xtype: 'button',
- iconCls: 'btnEditSearch',
- title: this.litSearch,
- margins: '1 2 1 2',
- handler: function () {
- var txtSearch = Ext.getCmp(me.id + '_txtSearch');
- var str = txtSearch.getValue();
- this.getLocation(str, true);
- },
- scope: this
- }
- ],
-
- JSF.Components.JSF_Geo.superclass.initComponent.call(this);
- },
-
-
- listeners: {
- 'afterrender': function (me) {
-
- var contenerHtml = document.getElementById(this.id + "_gmap_content");
-
- // positionement par defaut
- var latlng = this.value.getLatLng() || this.defaultPoint;
- var zoom = this.value.getZoom() ||this.defaultZoom;
-
- var myOptions = {
- center: latlng,
- zoom: zoom,
- mapTypeId: google.maps.MapTypeId.ROADMAP
- };
-
- this.map = new google.maps.Map(contenerHtml, myOptions);
- this._initialised = true;
- this.refresh();
- }
- },
-
-
- // positionement de pine
- MarkerRefresh: function () {
-
- var me = this;
-
- // nettoyage
- if (this.marker) {
-
- if (this.marker.infowindow) {
- this.marker.infowindow.close();
- this.marker.infowindow = undefined;
- }
- this.marker.setMap(null);
- this.marker = undefined;
- }
-
- var latlng = this.value.getLatLng();
-
- // marker position
- if (latlng != undefined) {
-
- //creation marker
- this.marker = new google.maps.Marker({
- position: latlng,
- draggable: true
- });
-
- //CLICK
- google.maps.event.addListener(this.marker, 'click', function (e) {
- if (me.marker.infowindow == undefined) me.showInfoWindow();
- else me.closeInfoWindow();
- });
-
- //DRAG END
- google.maps.event.addListener(this.marker, 'dragend', function (pos) {
- if (me.value) {
- me.value.lat = pos.latLng.lat();
- me.value.lng = pos.latLng.lng();
- me.getAddress(function (result) { me.showInfoWindow(); });
-
- }
- });
-
- //DRAG START
- google.maps.event.addListener(this.marker, 'dragstart', function () {
- if (me.marker.infowindow) { me.closeInfoWindow(); }
- });
-
- this.marker.setMap(this.map);
- this.map.setOptions({ center: latlng, zoom: (this.value.getZoom() || this.defaultZoom) });
- this.showInfoWindow();
-
- } else {
- this.map.setOptions({ center:this.defaultPoint, zoom: this.defaultZoom });
- }
- },
-
-
- // recherche positionement de la carte par adresse
- getLocation: function (adr, bReplace) {
- var me = this;
- var adrStr = adr ? adr : this.value.toString();
-
- if (adrStr == '') {
- this.setValue();
- return;
- }
-
- var geocoder = new google.maps.Geocoder();
-
- geocoder.geocode({ 'address': adrStr }, function (results, status) {
- if (status == google.maps.GeocoderStatus.OK) {
-
- var res = results[0];
- if (bReplace == true) me.value.parseFromGInfo(res);
- else me.value.parsePositionFromGInfo(res);
- me.MarkerRefresh();
-
- } else {
- //erreur
- me.setValue();
- }
- });
- },
-
- getAddress: function (handlerResult) {
-
- var me = this;
- var latlng = this.value.getLatLng();
-
-
- var geocoder = new google.maps.Geocoder();
- geocoder.geocode({ 'latLng': latlng }, function (results, status) {
- if (status == google.maps.GeocoderStatus.OK) {
- var res = results[0];
- me.value.parseAddressFromGInfo(res);
- if (handlerResult && res) handlerResult(res);
-
- } else {
- // erreur
- }
- });
-
- },
-
- valideLocalisation: function () {
- if (this._currentGeoFrmInfo != undefined) {
- var frm = this._currentGeoFrmInfo.getForm();
- if (frm) this.value.update(frm.getFieldValues())
- this.fireEvent("change", this.value);
- this.hide();
- }
- },
-
- removeLocalisation: function () {
- this.setValue();
- this.fireEvent("change", this.value);
- this.hide();
- },
-
-
- /****************/
- // Show / Close
-
- closeInfoWindow: function () {
- if (this.marker && this.marker.infowindow) {
- this.marker.infowindow.close();
- this.marker.infowindow = undefined;
- }
- },
-
-
- // Affichage Info adresse
- showInfoWindow: function () {
-
- if (this.marker) {
- var windowW = 300;
- var labelW = 90;
- var padding = 15;
-
- var me = this;
- this.closeInfoWindow();
-
- var content = "<div id='" + this.id + "_GeoFrmInfoContainer' style='width:" + windowW + "px; height:160px'></div>";
- this.marker.infowindow = new google.maps.InfoWindow({ content: content });
-
- google.maps.event.addListener(this.marker.infowindow, 'domready', function () {
-
-
-
- me._currentGeoFrmInfo = new Ext.form.FormPanel({
- renderTo: me.id + '_GeoFrmInfoContainer',
- border: true,
- autoScroll: false,
- labelWidth: labelW,
- bodyStyle: " padding:2px; padding-top:20px;",
- items: [
- { xtype: 'textfield', name: 'adr', value: me.value.adr, fieldLabel: 'Adresse', width: (windowW - labelW - padding) },
- { xtype: 'textfield', name: 'commune', value: me.value.commune, fieldLabel: 'Commune', width: (windowW - labelW - padding) },
- { xtype: 'textfield', name: 'cp', value: me.value.cp, fieldLabel: 'Code postal', width: (windowW - labelW - padding) },
- { xtype: 'label', html: me.value.lat.toString().substring(0, 12) + " / " + me.value.lng.toString().substring(0, 12), fieldLabel: 'Lat / lng', width: (windowW - labelW - padding) }
- ],
- bbar: [
- { text: "Supprimer", handler: me.removeLocalisation, scope: me },
- '->',
- { text: "Valider", handler: me.valideLocalisation, scope: me }
- ]
- });
- });
-
- google.maps.event.addDomListener(this.marker.infowindow, 'closeclick', function () { me.marker.infowindow = undefined; });
-
- this.marker.infowindow.open(this.map, this.marker);
-
- }
- }
- });
-
- Ext.reg('JSF_Geo', JSF.Components.JSF_Geo);
Ext.namespace('JSF');
Ext.namespace('JSF.Components');
JSF.Components.JSF_Geo = Ext.extend(Ext.Window, {
title: 'Recherche et localisation',
width: 860,
modal: true,
closeAction: 'hide',
closable: true,
resizable: false,
//ressources
litEmptyText: 'Champ de recherche',
litSearch: 'Rechercher',
_initialised: false,
defaultAdsres: undefined,
defaultPoint: new google.maps.LatLng(46.227638, 2.213749), // FRANCE
defaultZoom: 5,
value: undefined,
setValue: function (v) {
var me = this;
var emptyV = {
adr: '', commune: '', cp: '', departement: '', region: '', pays: '', lat: '', lng: '',
update: function (v) {
Ext.apply(this, v);
},
toString: function () {
var res = '';
res += this.adr;
if (this.commune && this.commune != '') res += (res == '' ? '' : ', ') + this.commune;
if (this.cp && this.cp != '') res += (res == '' ? '' : ', ') + this.cp;
if (this.departement && this.departement != '') res += (res == '' ? '' : ', ') + this.departement;
if (this.region && this.region != '') res += (res == '' ? '' : ', ') + this.region;
if (this.pays && this.pays != '') res += (res == '' ? '' : ', ') + this.pays;
return res;
},
positionExist: function () {
return this.lat != undefined && this.lat != ''
&& this.lng != undefined && this.lng != ''
},
addresExist: function () {
return (this.adr != undefined && this.adr != '')
|| (this.commune != undefined && this.commune != '')
|| (this.departement != undefined && this.departement != '')
|| (this.region != undefined && this.region != '')
|| (this.commune != undefined && this.commune != '')
|| (this.cp != undefined && this.cp != '')
|| (this.pays != undefined && this.pays != '')
},
getZoom: function () {
if (this.adr != "") return 16;
else if (this.commune != "") return 12;
else if (this.departement != "") return 9;
else if (this.region != "") return 8;
else if (this.pays != "") return 6;
else return undefined;
},
getLatLng: function () {
return this.positionExist() ? (new google.maps.LatLng(this.lat, this.lng)) : undefined;
},
parseFromGInfo: function (gInfo) {
this.parsePositionFromGInfo(gInfo);
this.parseAddressFromGInfo(gInfo);
},
parsePositionFromGInfo: function (gInfo) {
this.lat = gInfo.geometry.location.lat();
this.lng = gInfo.geometry.location.lng();
},
parseAddressFromGInfo: function (gInfo) {
if (gInfo.address_components) {
// parse adresse
this.adr = this.commune = this.cp = this.region = this.departement = this.pays = "";
for (var i = 0; i < gInfo.address_components.length; i++) {
var itemAdr = gInfo.address_components[i];
var type = itemAdr.types[0];
switch (type) {
case 'street_number':
this.adr = itemAdr.long_name + (this.adr == '' ? '' : ', ') + this.adr;
break;
case 'route':
this.adr += (this.adr == '' ? '' : ', ') + itemAdr.long_name;
break;
case 'locality':
this.commune = itemAdr.long_name;
break;
case 'postal_code':
this.cp = itemAdr.long_name;
break;
case 'administrative_area_level_1':
this.region = itemAdr.long_name;
break;
case 'administrative_area_level_2':
this.departement = itemAdr.long_name;
break;
case 'country':
this.pays = itemAdr.long_name;
break;
}
}
}
}
};
emptyV.update(v || {});
this.value = emptyV;
this.refresh();
},
refresh: function(){
var me = this;
if (this._initialised == true) {
if (this.value.positionExist()) {
// si la position est definis
if (!this.value.addresExist()) this.getAddress(function () {
me.MarkerRefresh();
});
else this.MarkerRefresh();
} else if (this.value.addresExist()) {
// si l'adresse n'est pas vide
this.getLocation(this.value.toString());
} else {
//si ni l'adresse ni coordonées
this.MarkerRefresh();
}
}
},
getValue: function () {
return this.value;
},
initComponent: function () {
var me = this;
this.setValue(this.value);
this.html = '<div id="' + this.id + "_gmap_content" + '" style="height:500px;"></div>';
this.tbar = [
'->',
{ xtype: 'textfield', emptyText: this.litEmptyText, width: this.width - 50, id: me.id + '_txtSearch',
listeners: {
specialkey: function (f, e) {
if (e.getKey() == e.ENTER) {
var txtSearch = Ext.getCmp(me.id + '_txtSearch');
var str = txtSearch.getValue();
me.getLocation(str, true);
}
}
}
},
{ xtype: 'spacer', width: 5 },
{
xtype: 'button',
iconCls: 'btnEditSearch',
title: this.litSearch,
margins: '1 2 1 2',
handler: function () {
var txtSearch = Ext.getCmp(me.id + '_txtSearch');
var str = txtSearch.getValue();
this.getLocation(str, true);
},
scope: this
}
],
JSF.Components.JSF_Geo.superclass.initComponent.call(this);
},
listeners: {
'afterrender': function (me) {
var contenerHtml = document.getElementById(this.id + "_gmap_content");
// positionement par defaut
var latlng = this.value.getLatLng() || this.defaultPoint;
var zoom = this.value.getZoom() ||this.defaultZoom;
var myOptions = {
center: latlng,
zoom: zoom,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
this.map = new google.maps.Map(contenerHtml, myOptions);
this._initialised = true;
this.refresh();
}
},
// positionement de pine
MarkerRefresh: function () {
var me = this;
// nettoyage
if (this.marker) {
if (this.marker.infowindow) {
this.marker.infowindow.close();
this.marker.infowindow = undefined;
}
this.marker.setMap(null);
this.marker = undefined;
}
var latlng = this.value.getLatLng();
// marker position
if (latlng != undefined) {
//creation marker
this.marker = new google.maps.Marker({
position: latlng,
draggable: true
});
//CLICK
google.maps.event.addListener(this.marker, 'click', function (e) {
if (me.marker.infowindow == undefined) me.showInfoWindow();
else me.closeInfoWindow();
});
//DRAG END
google.maps.event.addListener(this.marker, 'dragend', function (pos) {
if (me.value) {
me.value.lat = pos.latLng.lat();
me.value.lng = pos.latLng.lng();
me.getAddress(function (result) { me.showInfoWindow(); });
}
});
//DRAG START
google.maps.event.addListener(this.marker, 'dragstart', function () {
if (me.marker.infowindow) { me.closeInfoWindow(); }
});
this.marker.setMap(this.map);
this.map.setOptions({ center: latlng, zoom: (this.value.getZoom() || this.defaultZoom) });
this.showInfoWindow();
} else {
this.map.setOptions({ center:this.defaultPoint, zoom: this.defaultZoom });
}
},
// recherche positionement de la carte par adresse
getLocation: function (adr, bReplace) {
var me = this;
var adrStr = adr ? adr : this.value.toString();
if (adrStr == '') {
this.setValue();
return;
}
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': adrStr }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var res = results[0];
if (bReplace == true) me.value.parseFromGInfo(res);
else me.value.parsePositionFromGInfo(res);
me.MarkerRefresh();
} else {
//erreur
me.setValue();
}
});
},
getAddress: function (handlerResult) {
var me = this;
var latlng = this.value.getLatLng();
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'latLng': latlng }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var res = results[0];
me.value.parseAddressFromGInfo(res);
if (handlerResult && res) handlerResult(res);
} else {
// erreur
}
});
},
valideLocalisation: function () {
if (this._currentGeoFrmInfo != undefined) {
var frm = this._currentGeoFrmInfo.getForm();
if (frm) this.value.update(frm.getFieldValues())
this.fireEvent("change", this.value);
this.hide();
}
},
removeLocalisation: function () {
this.setValue();
this.fireEvent("change", this.value);
this.hide();
},
/****************/
// Show / Close
closeInfoWindow: function () {
if (this.marker && this.marker.infowindow) {
this.marker.infowindow.close();
this.marker.infowindow = undefined;
}
},
// Affichage Info adresse
showInfoWindow: function () {
if (this.marker) {
var windowW = 300;
var labelW = 90;
var padding = 15;
var me = this;
this.closeInfoWindow();
var content = "<div id='" + this.id + "_GeoFrmInfoContainer' style='width:" + windowW + "px; height:160px'></div>";
this.marker.infowindow = new google.maps.InfoWindow({ content: content });
google.maps.event.addListener(this.marker.infowindow, 'domready', function () {
me._currentGeoFrmInfo = new Ext.form.FormPanel({
renderTo: me.id + '_GeoFrmInfoContainer',
border: true,
autoScroll: false,
labelWidth: labelW,
bodyStyle: " padding:2px; padding-top:20px;",
items: [
{ xtype: 'textfield', name: 'adr', value: me.value.adr, fieldLabel: 'Adresse', width: (windowW - labelW - padding) },
{ xtype: 'textfield', name: 'commune', value: me.value.commune, fieldLabel: 'Commune', width: (windowW - labelW - padding) },
{ xtype: 'textfield', name: 'cp', value: me.value.cp, fieldLabel: 'Code postal', width: (windowW - labelW - padding) },
{ xtype: 'label', html: me.value.lat.toString().substring(0, 12) + " / " + me.value.lng.toString().substring(0, 12), fieldLabel: 'Lat / lng', width: (windowW - labelW - padding) }
],
bbar: [
{ text: "Supprimer", handler: me.removeLocalisation, scope: me },
'->',
{ text: "Valider", handler: me.valideLocalisation, scope: me }
]
});
});
google.maps.event.addDomListener(this.marker.infowindow, 'closeclick', function () { me.marker.infowindow = undefined; });
this.marker.infowindow.open(this.map, this.marker);
}
}
});
Ext.reg('JSF_Geo', JSF.Components.JSF_Geo);
Conclusion
prérequis: - ExtJS 3.3.1 - IE >= 8 ou FF ou Chrome(conseillé ;))
Historique
- 28 avril 2011 19:21:27 :
- Description mis à jour
- 29 avril 2011 10:18:27 :
- ajout source
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
lien javascript [ par ilimo ]
bonjour....peut-on rendre un lien actif et inactif avec javascript ?ex : a et b sont deux liens html...quand je clique sur a, la page liée à a s'af
select case en javascript [ par Juju ]
je cherche une sorte un select case mais en javascript, pouvez vous me donner la syntaxe MerciJuju
javascript dans formulaire acrobat [ par domi ]
"Envoie par mèl du contenu du formulaire"j'ai écrit deux lignes simple en javascript dans un formulaire acrobat, il fonctionne bien avec Acrobat "prog
Lien javascript [ par yoyo ]
Salut tout le monde,g un petit pb,g un lien qui est une image et quand je clique dessus, je lance une fonction javascript.Sur IE, pas de probleme mais
Colle pour les pros du javascript [ par Manu ]
Bonjour,je propose aux passionnés de javascript de relever un défi. J'ai téléchargé les fichiers pour un menu en DHTML/JavaScript (fichiers .css et
Javascript & unload ?????????? [ par Léa ]
Hello Utilisant javascript, la fonction onUnload me permet correctement de capturer l'evenement de fermeture de ma fenetre... sauf que la touche F5 ou
fonction javascript [ par phil ]
Bonjourvoici mon pb: function changeFrame(frame1,frame2){ top.nomdeframe1.location=frame1 top.nomdeframe2.location=frame2 comment doit-on écrire ce sc
Besoin urgent d'une fonction Javascript [ par David ]
Bonjour,Voici le context:J'utilise des JSP dans lesquelles j'insert des tags avec des listes déroulantes en import Java.J'ai un champ text dans lequel
versions javascript [ par arthur ]
je cherche une récapitulatif contenant les fonctionnalités de chaque version de javascript de 1.0 à 1.3 ou 1.4.merci
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Forum
UTILISER UN .JSUTILISER UN .JS par zaikoe
Cliquez pour lire la suite par zaikoe
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|