Amigo me parecio excelente tu explicacion pero no puedo ver el mapa te dejo el codigo que use:
Código PHP:
Ver original<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://maps.google.com/maps?file=api&v=2&sensor=true_or_false&key=ABQIAAAA3JHgufCbAZ0sC1iVrlzz5RR5bwRO9eYs5uOHqSErQ83yIJLwMRQN9TZgs8B8yTgmsIjQLru4PaHURg" type="text/javascript"></script>
<title>Mapa Cementerio Municipal</title>
</head>
<body>
<?php
//ini_set('display_errors',1);
//error_reporting(E_ALL);
//include('../Connections/config.php');
include_once('../Connections/BD_Cementerio.php');
$conectados=AbrirCone();
// Funciones que Utilizo en el Cuerpo
include_once('funciones.php');
$TipoBov=$_GET['TipoBov'];
$DifID=$_GET['DifID'];
$Consul="SELECT difuntos_totales.Nombre_apellido as Nombre,difuntos_totales.Edad as Edad,difuntos_totales.FEnterramiento as Inhumacion,difuntos_totales.Parroquia as Parroquia,bovedas_total_$TipoBov.x as x,bovedas_total_$TipoBov.y as y FROM difuntos_totales,bovedas_total_$TipoBov where difuntos_totales.Cod_Boveda=bovedas_total_$TipoBov.codigo and difuntos_totales.Tipo_Boveda=bovedas_total_$TipoBov.Tipo and difuntos_totales.Bloque=bovedas_total_$TipoBov.bloque and difuntos_totales.difunto_ID=$DifID";
$Datos=Consuta($Consul,$conectados);
{
$nombre=$row["Nombre"];
$edad=$row["Edad"];
$inhumacion=$row["Inhumacion"];
$parroquia=$row["Parroquia"];
$x=$row["x"];
$y=$row["y"];
}
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="http://www.forosdelweb.com/f18/imagenes/Mapa Fisico.png" width="518" height="30" border="0"><BR><BR></td>
</tr>
<tr>
<td>
<div style="width: 1000px; height: 684px;
background-image: url('../imagenes/mapa.png'); z-index: 1;">
<?php
{
if($x!="0" and $y!="0")
{
?>
<div style="
width: 1000px; height: 684px;
background-image: url('../imagenes/pin.gif');
background-repeat: no-repeat;
background-position: <? echo $x; ?>px <? echo $y; ?>px;">
<map name="Cementerio">
<?
if($x>0)
{
?>
<area shape="rect" coords="<? echo $x; ?>,<? echo $y; ?>,<? echo $x + 20; ?>,<? echo $y + 20; ?>" title="<? echo "Nombre: $nombre Edad: $edad"; ?>">
<?
}
?>
</map>
<img src="http://www.forosdelweb.com/f18/imagenes/leer.gif" border="0" width="1000" height="684" usemap="Cementerio">
</div><?php
}
}
?>
</div>
</td>
</tr>
</table>
<div id="map" style="width: 500px; height: 500px">
</div>
</body>
</html>
La pagina es esta:
http://localhost/portal/cementerio_u...&TipoBov=DOBLE
se suponque que debajo del mapa que tengo de prueba saldria el de google pero no sale nada, que pasa? :S