function Point(lat,lon,icon,html,hasPost){

this._lat=lat;
this._lon=lon;
this._gPoint=new google.maps.LatLng(this._lat,this._lon);
this._icon= icon;
this._html=html;
this._marker = new google.maps.Marker(this._gPoint,this._icon);
this._show=false;
this._hasPost=hasPost;
}
Point.prototype._lat;
Point.prototype._lon;
Point.prototype._gPoint;
Point.prototype._icon;
Point.prototype._html;
Point.prototype._marker;
Point.prototype._show;
Point.prototype._hasPost;