prueba de concepto crear circuitos
This commit is contained in:
parent
fb00c8b6d9
commit
83f69e2df9
@ -29,6 +29,7 @@ $background_imagen = buscar_imagen("$_REQUEST[id]","","","$id_empresa");
|
|||||||
$plantilla ="mapa";
|
$plantilla ="mapa";
|
||||||
$categorias = lista_categorias($_REQUEST['id'],'','mapa') ;
|
$categorias = lista_categorias($_REQUEST['id'],'','mapa') ;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head >
|
<head >
|
||||||
@ -70,6 +71,55 @@ $categorias = lista_categorias($_REQUEST['id'],'','mapa') ;
|
|||||||
<link rel="stylesheet" href="librerias/leaflet/dist/MarkerCluster.Default.css" />
|
<link rel="stylesheet" href="librerias/leaflet/dist/MarkerCluster.Default.css" />
|
||||||
<script src="librerias/leaflet/dist/leaflet.markercluster-src.js"></script>
|
<script src="librerias/leaflet/dist/leaflet.markercluster-src.js"></script>
|
||||||
<script type="text/javascript" src="milfs/geojson.js.php?id=<?php echo $_REQUEST['id'] ?>&buscar=<?php echo $_REQUEST['buscar'] ?>&item=<?php echo $_REQUEST['item'] ?>"></script>
|
<script type="text/javascript" src="milfs/geojson.js.php?id=<?php echo $_REQUEST['id'] ?>&buscar=<?php echo $_REQUEST['buscar'] ?>&item=<?php echo $_REQUEST['item'] ?>"></script>
|
||||||
|
<?php
|
||||||
|
$otro_json = remplacetas('form_parametrizacion','campo',$_REQUEST[id],'descripcion'," tabla='form_id' and opcion = 'json'","","") ;;
|
||||||
|
//$obj = file_get_contents('https://www.kleper.net/wiki/RutaPazTerritorial.geojson');
|
||||||
|
$ids = json_decode($otro_json[0]);
|
||||||
|
foreach ($ids as $clave => $valor) {
|
||||||
|
if($valor !=""){
|
||||||
|
|
||||||
|
|
||||||
|
$obj=file_get_contents("$valor[0]");
|
||||||
|
$li .="<script>var geojsonAuxiliar_$clave = $obj ;</script>";
|
||||||
|
$layer .= "
|
||||||
|
var geojsonAux_$clave = L.geoJson(geojsonAuxiliar_$clave, {
|
||||||
|
|
||||||
|
pointToLayer: function(feature, latlng) {
|
||||||
|
var smallIcon = new L.Icon({
|
||||||
|
iconSize: [100, 100],
|
||||||
|
iconAnchor: [13, 27],
|
||||||
|
popupAnchor: [1, -24],
|
||||||
|
/*iconUrl: feature.properties.icon.iconUrl*/
|
||||||
|
iconUrl: 'https://tupale.co/milfs/images/secure/?file=150/da6d16547658ebc06c5378b30d1ee4bf.png'
|
||||||
|
|
||||||
|
});
|
||||||
|
return L.marker(latlng, {icon: smallIcon});
|
||||||
|
},
|
||||||
|
|
||||||
|
onEachFeature: function(feature, layer) {
|
||||||
|
var popupText = feature.properties.description
|
||||||
|
|
||||||
|
|
||||||
|
layer.bindPopup(popupText); }
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
";
|
||||||
|
$add_layer .= "markers.addLayer(geojsonAux_$clave);";
|
||||||
|
$capas_nombre .="geojsonAux_$clave,";
|
||||||
|
$capas .= "{
|
||||||
|
'$clave': geojsonAux_$clave
|
||||||
|
};";
|
||||||
|
$overlays ="
|
||||||
|
var overlays = $capas ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
echo $li;
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||||
<link href="librerias/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
<link href="librerias/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="librerias/leaflet/css/leaflet-sidebar.css" />
|
<link rel="stylesheet" href="librerias/leaflet/css/leaflet-sidebar.css" />
|
||||||
@ -115,7 +165,9 @@ $categorias = lista_categorias($_REQUEST['id'],'','mapa') ;
|
|||||||
<span id='formulario_titulo_mapa'><?php echo $formulario_nombre[0] ?></span>
|
<span id='formulario_titulo_mapa'><?php echo $formulario_nombre[0] ?></span>
|
||||||
<span class="leaflet-sidebar-close"><i class="fa fa-caret-left"></i></span>
|
<span class="leaflet-sidebar-close"><i class="fa fa-caret-left"></i></span>
|
||||||
</h1>
|
</h1>
|
||||||
<h3><span id='formulario_descripcion_mapa'><?php echo $formulario_descripcion[0] ?></span></h3>
|
<hr>
|
||||||
|
<label id='formulario_descripcion_mapa'><?php echo $formulario_descripcion[0] ?></label>
|
||||||
|
<hr>
|
||||||
<?php echo $categorias; ?>
|
<?php echo $categorias; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
2
milfs
2
milfs
@ -1 +1 @@
|
|||||||
Subproject commit 9a89a921e03bca67d97921b5e36fbac655a3e678
|
Subproject commit ea815bc5053485154cf336a2da6ff488d105a310
|
Loading…
Reference in New Issue
Block a user