From 52a06c6bc10a7bccfdc4068bce76ca03964bf2e5 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 1 Jun 2022 11:08:41 +0200 Subject: [PATCH] parking.js added --- proj/map/asset/js/db.js | 31 +------------------------------ proj/map/asset/js/parking.js | 29 +++++++++++++++++++++++++++++ proj/map/index.html | 1 + 3 files changed, 31 insertions(+), 30 deletions(-) create mode 100644 proj/map/asset/js/parking.js diff --git a/proj/map/asset/js/db.js b/proj/map/asset/js/db.js index ea501c2..6cc6357 100644 --- a/proj/map/asset/js/db.js +++ b/proj/map/asset/js/db.js @@ -11,36 +11,7 @@ var jdb = { nameEN : "Car park", nameIT : "Parcheggio", sub : { - lamy : { - id: "lamy", - isActive: true, - xy: [-18.27,56.91], - dirxy: [-21.66,52.47], - dirzl: 5, - minz: 2, - img: "https://ed.brz9.dev/proj/map/asset/img/lamy.jpg", - type: "item", - name: "Parking Lamy", - txtFR: "Parking public souterrain, situé à 3 minutes à pied de l'hôtel. Hauteur maximum: 1,9 m.", - txtEN: "Underground public parking, located 3 minutes walk from the hotel. Maximum height: 1,9 m.", - txtIT: "Parcheggio pubblico sotterraneo, situato a 3 minuti a piedi dall'hotel. Altezza massima: 1,9 m.", - card: { - tabs: { - info: { - tabtype: "info", - site: "https://www.cannes.com/fr/mairie/annuaire-pratique/equipements-municipaux/p10-parking-lamy.html", - handi: "yes", - hautmax: "1,9 m", - wifi: "yes", - address: "121 rue d'Antibes - 06400 Cannes", - tel: "+33 4 89 82 23 23", - email: "cannesparking@ville-cannes.fr", - - - } - } - } - } + ParkingLamy, } }, resto : { diff --git a/proj/map/asset/js/parking.js b/proj/map/asset/js/parking.js new file mode 100644 index 0000000..0ac99f9 --- /dev/null +++ b/proj/map/asset/js/parking.js @@ -0,0 +1,29 @@ +let ParkingLamy = { + id: "lamy", + isActive: true, + xy: [-18.27,56.91], + dirxy: [-21.66,52.47], + dirzl: 5, + minz: 2, + img: "https://ed.brz9.dev/proj/map/asset/img/lamy.jpg", + type: "item", + name: "Parking Lamy", + txtFR: "Parking public souterrain, situé à 3 minutes à pied de l'hôtel. Hauteur maximum: 1,9 m.", + txtEN: "Underground public parking, located 3 minutes walk from the hotel. Maximum height: 1,9 m.", + txtIT: "Parcheggio pubblico sotterraneo, situato a 3 minuti a piedi dall'hotel. Altezza massima: 1,9 m.", + card: { + tabs: { + info: { + tabtype: "info", + site: "https://www.cannes.com/fr/mairie/annuaire-pratique/equipements-municipaux/p10-parking-lamy.html", + handi: "yes", + hautmax: "1,9 m", + wifi: "yes", + address: "121 rue d'Antibes - 06400 Cannes", + tel: "+33 4 89 82 23 23", + email: "cannesparking@ville-cannes.fr", + + } + } + } +} diff --git a/proj/map/index.html b/proj/map/index.html index 6b74175..05879f1 100644 --- a/proj/map/index.html +++ b/proj/map/index.html @@ -56,6 +56,7 @@ +