mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 14:16:19 +00:00
arreglar mapa
This commit is contained in:
parent
9aff44b3d9
commit
4b2c360e17
2 changed files with 7 additions and 7 deletions
|
@ -2,25 +2,24 @@
|
||||||
import { onDestroy, onMount, tick } from 'svelte';
|
import { onDestroy, onMount, tick } from 'svelte';
|
||||||
import 'leaflet/dist/leaflet.css';
|
import 'leaflet/dist/leaflet.css';
|
||||||
import style from './map_style.json';
|
import style from './map_style.json';
|
||||||
import type L from 'leaflet';
|
import L from 'leaflet';
|
||||||
|
import 'maplibre-gl';
|
||||||
|
import '@maplibre/maplibre-gl-leaflet';
|
||||||
|
|
||||||
let mapEl: HTMLDivElement;
|
let mapEl: HTMLDivElement;
|
||||||
export let mapMap: (map: L.Map, l: typeof L) => void;
|
export let mapMap: (map: L.Map, l: typeof L) => void;
|
||||||
let map: L.Map | undefined;
|
let map: L.Map | undefined;
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
window.L = await import('leaflet');
|
|
||||||
const L2 = await import('maplibre-gl');
|
|
||||||
const L3 = await import('@maplibre/maplibre-gl-leaflet');
|
|
||||||
// Set up initial map center and zoom level
|
// Set up initial map center and zoom level
|
||||||
map = window.L.map(mapEl, {
|
map = L.map(mapEl, {
|
||||||
center: [-34.599722222222, -58.381944444444], // EDIT latitude, longitude to re-center map
|
center: [-34.599722222222, -58.381944444444], // EDIT latitude, longitude to re-center map
|
||||||
zoom: 9, // EDIT from 1 to 18 -- decrease to zoom out, increase to zoom in
|
zoom: 9, // EDIT from 1 to 18 -- decrease to zoom out, increase to zoom in
|
||||||
scrollWheelZoom: true // Changed to true to enable zoom with scrollwheel
|
scrollWheelZoom: true // Changed to true to enable zoom with scrollwheel
|
||||||
// tap: false
|
// tap: false
|
||||||
});
|
});
|
||||||
|
|
||||||
window.L.maplibreGL({
|
L.maplibreGL({
|
||||||
style: style as any,
|
style: style as any,
|
||||||
attribution:
|
attribution:
|
||||||
'© <a href="https://stadiamaps.com/" target="_blank">Stadia Maps</a>, © <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> © <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a>'
|
'© <a href="https://stadiamaps.com/" target="_blank">Stadia Maps</a>, © <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> © <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a>'
|
||||||
|
@ -28,7 +27,7 @@
|
||||||
|
|
||||||
// display Carto basemap tiles with light features and labels
|
// display Carto basemap tiles with light features and labels
|
||||||
// L.tileLayer.provider('Stadia.AlidadeSmoothBackground').addTo(map);
|
// L.tileLayer.provider('Stadia.AlidadeSmoothBackground').addTo(map);
|
||||||
mapMap(map, window.L);
|
mapMap(map, L);
|
||||||
});
|
});
|
||||||
|
|
||||||
onDestroy(() => {
|
onDestroy(() => {
|
||||||
|
|
1
sepa/sitio2/src/routes/id_producto/[id]/+page.ts
Normal file
1
sepa/sitio2/src/routes/id_producto/[id]/+page.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export const ssr = false;
|
Loading…
Reference in a new issue