Skip to content

Commit

Permalink
refactor: location of user
Browse files Browse the repository at this point in the history
  • Loading branch information
albert1413 committed Dec 18, 2024
1 parent 2fb1864 commit 73ebdc0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/src/app/Views/Admin/Inventory.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,33 @@ function spinGlobe() {

spinGlobe();

// Location of user
navigator.geolocation.getCurrentPosition(
(position) => {
const { latitude, longitude } = position.coords;

// Crear un marcador exacto en la posición del usuario
new mapboxgl.Marker()
.setLngLat([longitude, latitude])
.addTo(map);

// Centrar el mapa en la ubicación del usuario
map.flyTo({
center: [longitude, latitude],
zoom: 15, // Ajusta el nivel de zoom si es necesario
essential: true // Garantiza la animación
});
},
(error) => {
console.error('Error al obtener la ubicación:', error);
},
{
enableHighAccuracy: true, // GPS más preciso
timeout: 10000, // Tiempo máximo para obtener la ubicación (ms)
maximumAge: 0 // Siempre obtener datos frescos
}
);

//GeoJSON
map.on('load', () => {
// Agregar fuente con GeoJSON
Expand Down

0 comments on commit 73ebdc0

Please sign in to comment.