Librería: Leaflet

Descripción: Se cargan datos desde PostgreSQL y se visualizan desde el navegador usando FastApi con Python y Leaflet.

image.png

Antes de iniciar

Configurar Base de Datos

CREATE EXTENSION IF NOT EXISTS postgis;

DROP TABLE IF EXISTS centros_salud;

CREATE TABLE centros_salud (
    id SERIAL PRIMARY KEY,
    nombre TEXT,
    direccion TEXT,
    telefono TEXT,
    municipio TEXT,
    horario TEXT,
    categoria TEXT,
    geom GEOMETRY(Point, 4326)
);
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('ASOCIACION CLINICA BAUTISTA', 'CL 70B 38 37', '3683136', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80879124994948, 10.985124997334367), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('INSTITUTO DE SEGUROS SOCIALES', 'CL 36  44-12', '3514491', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.779294999922, 10.98334624733269), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DENTAL CARACAS', 'KR 54 70 69', '3458552', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80044750091827, 10.99824750125282), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('HOSPITAL GENERAL DE BARRANQUILLA', 'CL 33 33-139', '3798708', 'BARRANQUILLA', 'nan', 'HOSPITAL', ST_SetSRID(ST_MakePoint(-74.78014125187593, 10.97341124634687), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA GENERAL DEL NORTE', 'KR 48 70 22', '3564145', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80275874994385, 10.994739999296428), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('INSTITUTO DE SEGUROS SOCIALES', 'KR 44  35-31', '3400501', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.77900374699209, 10.983136250262191), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LOS ALMENDROS', 'KR 18D 80A-24', '3246191', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-1.7976931348623157, -1.7976931348623157), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('HOSPITAL UNIVERSITARIO DE BARRANQUILLA', 'CL 57 23-100', '3468806', 'BARRANQUILLA', 'nan', 'HOSPITAL', ST_SetSRID(ST_MakePoint(-74.80129875189562, 10.971068747321283), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SOUTH MEDICAL CLINIC S.A', 'CL 45 14-98', '0', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.7961412499377, 10.955183750236188), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA BONNADONA LTDA', 'KR 49C 82 70', '3581433', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81588250190924, 11.002076249303286), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA RINOLASER', 'KR 49C 76 219', '3586677', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81053750190426, 10.999873754184023), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA REINA VICTORIA', 'CL 80 46-44', '3450068', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81374624897757, 10.999795002230826), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DEL CARIBE S.A.', 'CL 80 49C-65', '3564861', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81263749799996, 11.001732504185782), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DENTAL CARACAS', 'CL 43 38 02', '3518305', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.78509374699775, 10.979218752211693), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DENTAL CARACAS', 'CL 45 43 12', '3418586', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.78612749699869, 10.982952504168281), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA OFTAMOLOGICA DEL CARIBE', 'CL 86 50 158', '3573117', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81992499800674, 11.007031248331316), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA VETERINARIA EL PRADO', 'CL 74 55 70', '3680290-3589272', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80110874994233, 11.001591252232515), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA COLOMBIA LTDA', 'CL 38 41-26', '3510709', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.78104250090024, 10.980561246353545), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA MISERICORDIA I.PS.', 'KR 70 75 145', '3685651-3523045', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79686750189154, 11.010707499311309), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA CAMPBELL', 'CL 54 53 76', '3701999-3702131', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79026624602596, 10.992772504177424), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA INFANTIL DE URGENCIAS', 'KR 48 70 38', '3586739', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80290499994402, 10.994816247343408), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA BOSTON', 'KR 45 57-67', '3795258', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79448874602991, 10.988976253197336), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DENTAL FAMILIAR', 'KR 40 41 53', '3401443', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.78376500187932, 10.980543746353533), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA EL PRADO', 'CL 59 50 10', '3684153-3684154', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79401374700603, 10.991924996364162), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DE LA SEXUALIDAD HUMANA', 'KR 50 80 81', '3782707', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81260249702336, 11.00173999734983), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA NUEVA GRANADA', 'CL 68 28 11', '3580421', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.806362496041, 10.977330001233383), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA ESPERANZA', 'KR 53 92 25', '3578443', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.82202625093839, 11.012283746383105), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SANTA MONICA LTDA', 'KR 43 70-144', '3683783', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80581750385295, 10.990965000269512), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DENTAL POPULAR', 'KR 44 43 66', '3408185', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.78450500383315, 10.984326248310197), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA CONSOLACION', 'KR 70 75-135', '3533117', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79676625091486, 11.010542501264297), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SANTA MONICA LTDA', 'KR 43 70 144', '3562966-3587140', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80599374701723, 10.990992498316416), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA PRADERA', 'CL 110 36B 35', '3591439', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.83606000095148, 10.98079499928349), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('REINA CATALINA CLINICA DE CIRUJIA PLASTICA', 'CL 82 47-12', '3568039', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81633624897995, 11.001360003208845), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SAN IGNACIO', 'CL 76 6B 36', '3280592-3280686', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.82169999703183, 10.946898749251886), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('HOSPITAL DEPARTAMENTAL JUAN DOMINGUEZ ROMERO DE', 'CL 15 21-60', '3435974', 'BARRANQUILLA', 'nan', 'HOSPITAL', ST_SetSRID(ST_MakePoint(-74.77359999991671, 10.959325003169738), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA GENERAL DEL NORTE', 'KR 48 70 30', '3563261', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.8028325038502, 10.994778751249612), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DE LA SALUD SEXUAL', 'CL 78 57 215', '3785600', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80433625287503, 11.008191252238646), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA CERVANTES', 'CL 70B 41-225', '3607018', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80681374799451, 10.988544996360986), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('PROMEDIC', 'KR 47 79-175', '3455751', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.81318125190671, 10.99942499734766), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA UNIFRAR', 'CL 72 59 39', '3534658', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79736749603262, 11.002112498326767), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('UNICLINICAS', 'KR 43 70-106', '3680331-3682020', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80570874897006, 10.990840001245942), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SAN JOAQUIN', 'CL 34 33 55', '3704891-3513470', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.780949998947, 10.97282124634637), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA MEDIESP LTDA', 'KR 49C 84 141', '3576620', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81962625093615, 11.003713747351696), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('HOSPITAL UNIVERSIDAD DEL NORTE', 'CL 30 AU AL AEROPUERTO', '3715555', 'BARRANQUILLA', 'nan', 'HOSPITAL', ST_SetSRID(ST_MakePoint(-1.7976931348623157, -1.7976931348623157), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('INSTITUTO DE SEGUROS SOCIALES', 'KR 44  36-10', '3518257', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.77944374601589, 10.98323250319197), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('FUNDACION HOSPITAL UNIVERSITARIO METROPOLITANO', 'CL 76 42-78', '3565109', 'BARRANQUILLA', 'nan', 'HOSPITAL', ST_SetSRID(ST_MakePoint(-74.81361249995399, 10.992887496365029), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA MERCED', 'CL 60 38-29', '3510663-3404226', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.7979187518925, 10.98358875026264), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SALUDCOOP', 'KR 49B 79 138', '3785885', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81230375092935, 10.99988250418403), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA EL PORVENIR', 'CL 18 34-18', '3744119', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-1.7976931348623157, -1.7976931348623157), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DEL CARIBE S.A.', 'CL 80 49C-65', '3564861-3565933', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81255125190614, 11.001716251256084), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA VILLA COUNTRY S.A.', 'CL 78 57-215', '3554985', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.804775003852, 11.00754124833179), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('PROFAMILIA', 'CL 59 50 17', '3682886-3490312', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.79401374700603, 10.991924996364162), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA COLSANITAS DE LA COSTA S.A', 'KR 50 82 168', '3786550-3782642', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.817096246051, 11.003651248328197), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA EL PORVENIR', 'CL 18 34-18', '3744119-3436538', 'SOLEDAD', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.76428375381431, 10.929122497282208), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LASER INTEGRE SPA', 'KR 50 80-242', '3583080', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81477750288474, 11.002736251257033), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('INSTITUTO DE SEGUROS SOCIALES', 'KR 11  35-167', '3470345', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.79044500188553, 10.95060500316157), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('INSTITUTO DE SEGUROS SOCIALES', 'KR 44  40-20', '3449424', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.78157000090073, 10.983697504168958), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('ORGANIZACIÀN CLÖNICA GENERAL DEL NORTE S.A.', 'CL 70 48-35', '3564455', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.80215749603707, 10.995353746367357), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA BAUTISTA', 'CL 71 38-09', '3586573', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80981124995043, 10.98501749928738), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DENTAL COLINA', 'KR 43 69 90', '3588397', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80357499994466, 10.989688748315189), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA RENAL DE LA COSTA', 'KR 50 80 90', '3781214-3780284', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81330249897712, 11.00203875320949), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DEL ROSARIO', 'CL 56 44 60', '3796409', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79336874993515, 10.987274999289468), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('INSTITUTO DE SEGUROS SOCIALES', 'CL 57  24-11', '3406552', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.80120500287211, 10.971368751227828), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA VETERINARIA SHARPEY', 'KR 38 69 129', '3586964-3606543', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80602499701723, 10.983996251239546), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CEMED', 'CL 85 49C 17', '3570634-3576470', 'BARRANQUILLA', '6:00 A.M. - 10:00 P.M.', 'CENTRO MEDICO', ST_SetSRID(ST_MakePoint(-74.82025500386641, 11.00401875028166), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('POLICLINICA 13 DE JUNIO', 'KR 38 58 46', '3411927', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79732249700913, 10.982953751238597), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA CENTRAL', 'KR 42F 75B 18', '3567293-3565109', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81140999604571, 10.992891247341618), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA BAUTISTA', 'CL 70B 38- 37', '3588214-3564724', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80879124994948, 10.985124997334367), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA PIEDAD', 'CL 60 38 29', '3402895', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.7979187518925, 10.98358875026264), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA VILLA COUNTRY S.A.', 'CL 78 57 215', '3554985', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80433625287503, 11.008191252238646), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA ASUNCION', 'CL 70B 41 93', '3681148-3565725', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80633750190032, 10.98950875319781), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DE FACTURAS', 'KR 51B 86-48', '3780050-3573722', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.8206412528902, 11.007368747355088), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA VETERINARIA FRENCH POODLE', 'KR 43 79 44', '3681566', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.8137400019072, 10.99540124832049), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA GENERAL DEL NORTE', 'KR 48 70 38', '3585712-3585708', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80290499994402, 10.994816247343408), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA VETERINARIA EL COUNTRY', 'KR 60 79 120', '3559057', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.8063412528769, 11.010478746381409), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA CERVANTES BARRAGAN LTDA.', 'CL 70B 41-225', '0', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.80681374799451, 10.988544996360986), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA OFTAMOLOGICA UNIDAD LASER DEL ATLANTICO', 'KR 49C 80 125', '3587739', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81451125288453, 11.001495000279306), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA SAN VICENTE', 'CL 87 49C 24', '3575904-3575964', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.82191375386799, 11.004798751258932), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA ATENAS', 'CL 80 49C-10', '3565832', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81253124799986, 11.001661254185706), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA INCOS', 'KR 43 84 77', '3597843', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.82080249996068, 10.998669999300091), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA YEPES PORTO', 'KR 51B 82 152', '3565053', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81593625093274, 11.005194998329614), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DEL SOL', 'KR 47 80 148', '3458836-3566662', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.8149500038615, 11.000524997348691), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('POLICLINICA Y MATERNIDAD', 'CL 34 33 225', '3510274', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.7803450028527, 10.974429999277561), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA INTERNACIONAL LTDA.', 'KR 49C 80 39', '3583227', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.81364499702431, 11.001141247349267), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA PSIQUIATRICA RESURGIR', 'CL 55 46 63', '3708220-3494086', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79143499993336, 10.99033999929236), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA LA MERCED I.P.S', 'CL 60 38-29', '3709344', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.7979874979863, 10.983629997332969), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('UNIDAD MEDICA BARRANQUILLA LTDA', 'CL 34 33 225', '3510274', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.7803450028527, 10.974429999277561), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA GENERAL EL RECREO', 'CL 57 38 08', '3411343', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.79624374896127, 10.982494996355342), 4326));
INSERT INTO centros_salud (nombre, direccion, telefono, municipio, horario, categoria, geom) VALUES ('CLINICA DEL NIÑO LTDA.', 'KR 48 70-30', '3563261', 'BARRANQUILLA', 'nan', 'CLINICA', ST_SetSRID(ST_MakePoint(-74.8028325038502, 10.994778751249612), 4326));

Configurar Backend

Desde Visual Studio Code, crear la siguiente estructura del proyecto: