
PointRemarquable = Class.create();
PointRemarquable.prototype= {

	initialize: function(id, num, rue, ville, pays, lat, long){
		this.idPt=id;
		this.numPt=num;
		this.ruePt=rue;
		this.villePt=ville;
		this.paysPt=pays;
		this.latitude=parseFloat(lat);
		this.longitude=parseFloat(long);
	},

	idA: function (){
        return this.idPt;
    },
    
    numA: function (){
        return this.numPt;
    },
    
    rueA: function (){
        return this.ruePt;
    },
    
    villeA: function (){
        return this.villePt;
    },
    
    paysA: function (){
        return this.paysPt;
    },
    
    longitudeA: function (){
        return this.longitude;
    },
    
    latitudeA: function (){
        return this.latitude;
    }
}