!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/www/js/componentes/   drwxr-xr-x
Free 14.57 GB of 61.93 GB (23.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ei_mapa.js (6.85 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
	ei_mapa.prototype = new ei();
	ei_mapa.prototype.constructor = ei_mapa;

	/**
	 * Constructor
	 */
	function ei_mapa (id, instancia, input_submit)
	{
		this._id = id;
		this._instancia = instancia;
		this._input_submit = input_submit;
		this._extent = null;
		this._extent_full = null;
		this._ancho = null;;
		this._alto = null;
		this._url = null;
		this._layers = null;
		this._lista_layers_activos = null;

		this.controlador = null;
		this._evento_implicito = null;
		///this._expandido = false;
		this._mapa = null;
		this._ubicacion_controles = 'standardRight';
		this._toolbar = null;
		
		//Identificadores de los campos utilizados por el mapa
		this._param_mapext = 'mapext' + id[1];
		this._param_extra = 'map_extra' + id[1];
	}

	/**
	 * Funcion para inicializar el componente
	 */
	ei_mapa.prototype.iniciar= function ()
	{
		//Nombres de los metodos que se pueden extender para configurar el mapa
		var metodo_extension = 'evt__mapa__iniciar';
		var metodo_eventos = 'configurar_toolbar_eventos';

		//Creo el objeto del mapa
		this._mapa = new msMap(document.getElementById('cuerpo__' + this._instancia));
		this._mapa.setCgi(this._url);
		this._mapa.setWidth(this._ancho);
		this._mapa.setHeight(this._alto);
		this._mapa.setFullExtent(this._extent_full[0], this._extent_full[1], this._extent_full[2]);
		this._mapa.setExtent(this._extent[0], this._extent[1], this._extent[2]);
		this._mapa.setLayers(this._layers);

		//Creo el objeto que representara al toolbar
		this._toolbar = new msToolbar (this._mapa, this._ubicacion_controles, false, this);
		this._mapa.setToolbar(this._toolbar);

		if (existe_funcion(this, metodo_eventos)) {
			this[metodo_eventos]();
		}
		
		if (existe_funcion(this, metodo_extension)) {
			this[metodo_extension]();
		}
		this._toolbar.redraw();
		this._toolbar.activateButtons();
		
		//Inicializo todo el mapa
		this._mapa.init();																	//Llamo especificamente al inicializador
	}

	//------------------------------------------------------------------------------------------------//
	//											 MANEJO PROPIEDADES										  //
	//------------------------------------------------------------------------------------------------//
	ei_mapa.prototype.set_extent = function (xmin, xmax, ymin, ymax)
	{
		this._extent = [xmin, xmax, ymin, ymax];
	}

	ei_mapa.prototype.set_full_extent = function (xmin, xmax, ymin, ymax)
	{
		this._extent_full = [xmin, xmax, ymin, ymax];
	}

	ei_mapa.prototype.set_url = function(url_pedido)
	{
		this._url = url_pedido;
	}

	ei_mapa.prototype.set_ubicacion_controles = function (ubicacion)
	{
		this._ubicacion_controles = ubicacion;
	}

	ei_mapa.prototype.set_ancho_mapa = function (ancho)
	{
		if (isNaN(ancho)) {
			notificacion.agregar('El ancho para el mapa no es correcto', 'error');
			return false;
		}
		this._ancho = ancho;
	}

	ei_mapa.prototype.set_alto_mapa = function (alto)
	{
		if (isNaN(alto)) {
			notificacion.agregar('El alto para el mapa no es correcto', 'error');
			return false;
		}
		this._alto = alto;
	}

	ei_mapa.prototype.setear_parametros = function(valor)
	{
		document.getElementById(this._param_extra).value = valor;
	}
	//------------------------------------------------------------------------------------------------//
	//											MANEJO DE EVENTOS											//
	//------------------------------------------------------------------------------------------------//
	ei_mapa.prototype.acercarse = function(e)
	{
		this._mapa.setActionZoomIn();
	}

	ei_mapa.prototype.alejarse = function(e)
	{
		this._mapa.setActionZoomOut();
	}

	ei_mapa.prototype.desplazar = function(e)
	{
		this._mapa.setActionPan();
		this._mapa.dragStart(e);
	}

	ei_mapa.prototype.area = function(e)
	{
		this._mapa.setActionZoombox();
		this._mapa.zoomStart(e);
	}

	ei_mapa.prototype.resetear_posicion = function(e)
	{
		this._mapa.fullExtent();
	}

	ei_mapa.prototype.get_punto_click = function (evento)
	{
		var punto = [];
		
		punto['X'] = this._mapa.getClick_X(evento);			//Recupero la posicion en el eje X
		punto['Y'] = this._mapa.getClick_Y(evento);			//Recupero la posicion en el eje Y

		return punto;
	}
	//------------------------------------------------------------------------------------------------//
	//											 MANEJO LAYERS													  //
	//------------------------------------------------------------------------------------------------//
	/**
	 * Permite setear la totalidad de los layers que tiene el mapa
	 */
	ei_mapa.prototype.set_layers = function (layers, cambiar_mapa)
	{
			this._layers = layers;
			if (cambiar_mapa == true) {
				this._mapa.setLayers(layers);
			}
	}

	/**
	 * Setea la lista de layers actualmente activos (util para el control de layers unicamente)
	 */
	ei_mapa.prototype.set_layers_activos = function (layers)
	{
		this._lista_layers_activos = layers;
	}

	/**
	 * Permite seleccionar/deseleccionar un layer en particular y refresca
	 * el mapa de acuerdo a la seleccion
	 */
	ei_mapa.prototype.change_layers = function (obj)
	{
		var layer_actual = obj.value;
		var status = obj.checked;
		if (status) {
			this._lista_layers_activos[layer_actual] = 1;
		} else {
			this._lista_layers_activos[layer_actual] = 0;
		}
		
		var resultado = this.get_layers_activos();
		this.set_layers(resultado.join(' '), true);
		this.render();
	}

	/**
	 * Devuelve un arreglo con la lista de layers activos a este momento
	 */
	ei_mapa.prototype.get_layers_activos = function()
	{
		var resultado = [];
		for (var layer  in  this._lista_layers_activos) {
			if (this._lista_layers_activos[layer] == 1) {
				resultado.push(layer);
			}
		}
		return resultado;
	}

	//----------------------------------------------------------------------------------------------///
	/**
	 * Dispara el renderizado del mapa que hara una llamada para
	 * obtener la nueva imagen
	 */
	ei_mapa.prototype.render = function ()
	{
		this._mapa.redraw();
	}


	//-------------------------------------------------------------------------------------------------------------------------------------------------------//
	ei_mapa.prototype.validar = function() {
		var ok = true;
		var validacion_particular = 'evt__validar_datos';
		if(this._evento && this._evento.validar) {
			if (existe_funcion(this, validacion_particular)) {
				ok = this[validacion_particular]();
			}			
		}
		return ok;
	};
	
	/**
	 * Realiza el submit del componente
	 */
	ei_mapa.prototype.submit = function()
	{
		if (this.controlador && !this.controlador.en_submit()) {
			return this.controlador.submit();
		}
		if (this._evento) {
			//Recupero los datos del mapa y el punto clickeado para enviarlos como datos del evento.
			var extent = this._mapa.getExtentActual();
			document.getElementById(this._param_mapext).value = extent['xmin'] + ' ' + extent['ymin'] + ' ' + extent['xmax'] + ' ' + extent['ymax'];

			//Marco la ejecucion del evento para que la clase PHP lo reconozca
			document.getElementById(this._input_submit).value = this._evento.id;
		}
	}

	toba.confirmar_inclusion('componentes/ei_mapa');

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.846 ]--