1
- import L , { LatLngExpression } from ' leaflet' ;
2
- import ' leaflet/dist/leaflet.css' ;
3
- import { MapContainer , Marker , TileLayer , Popup } from ' react-leaflet' ;
1
+ import L , { LatLngExpression } from " leaflet" ;
2
+ import " leaflet/dist/leaflet.css" ;
3
+ import { MapContainer , Marker , TileLayer , Popup } from " react-leaflet" ;
4
4
import React from "react" ;
5
5
import { HotChocolate } from "../domain/domain" ;
6
6
7
7
const showMarkers = window . location . hash === "#show-markers" ;
8
8
9
9
const list : HotChocolate [ ] = [
10
- {
11
- productName : "Varm belgisk sjokolade" ,
12
- englishProductName : "Belgian hot chocolate" ,
13
- vendor : "Steam kaffebar" ,
14
- location : "Jernbanetorget 1, Østbanehallen" ,
15
- lat : 59.91088362120013 ,
16
- lon : 10.752799203777597
17
- } ,
18
- {
19
- productName : "Varm sjokolade" ,
20
- englishProductName : "Hot chocolate" ,
21
- vendor : "Kaffebrenneriet" ,
22
- location : "Karl Johans gate 7, Arkaden" ,
23
- lat : 59.91181003626315 ,
24
- lon : 10.747782602301388
25
- } ,
26
- {
27
- productName : "Sjokolade på pinne" ,
28
- englishProductName : "Hot chocolate on a stick" ,
29
- vendor : "Espresso House" ,
30
- location : "Jernbanetorget 1, Østbanehallen" ,
31
- lat : 59.91201090441835 ,
32
- lon : 10.751298468298101 ,
33
- description : "Seasonally available"
34
- }
10
+ {
11
+ productName : "Varm belgisk sjokolade" ,
12
+ englishProductName : "Belgian hot chocolate" ,
13
+ vendor : "Steam kaffebar" ,
14
+ location : "Jernbanetorget 1, Østbanehallen" ,
15
+ lat : 59.91088362120013 ,
16
+ lon : 10.752799203777597
17
+ } ,
18
+ {
19
+ productName : "Varm sjokolade" ,
20
+ englishProductName : "Hot chocolate" ,
21
+ vendor : "Kaffebrenneriet" ,
22
+ location : "Karl Johans gate 7, Arkaden" ,
23
+ lat : 59.91181003626315 ,
24
+ lon : 10.747782602301388
25
+ } ,
26
+ {
27
+ productName : "Sjokolade på pinne" ,
28
+ englishProductName : "Hot chocolate on a stick" ,
29
+ vendor : "Espresso House" ,
30
+ location : "Jernbanetorget 1, Østbanehallen" ,
31
+ lat : 59.91201090441835 ,
32
+ lon : 10.751298468298101 ,
33
+ description : "Seasonally available"
34
+ }
35
35
] ;
36
36
37
37
const icon : L . DivIcon = L . divIcon ( {
38
- className : ' hot-chocolate-icon' ,
39
- iconSize : [ 30 , 30 ] ,
40
- iconAnchor : [ 0 , 0 ] ,
41
- popupAnchor : [ 15 , 0 ]
38
+ className : " hot-chocolate-icon" ,
39
+ iconSize : [ 30 , 30 ] ,
40
+ iconAnchor : [ 0 , 0 ] ,
41
+ popupAnchor : [ 15 , 0 ]
42
42
} ) ;
43
43
44
44
export default function FavoritesMap ( ) {
45
- // Default coordinates set to Oslo Sentral station
46
- const position : LatLngExpression = [ 59.91174337077401 , 10.750425582038146 ] ;
47
- const zoom : number = 15 ;
45
+ // Default coordinates set to Oslo Sentral station
46
+ const position : LatLngExpression = [ 59.91174337077401 , 10.750425582038146 ] ;
47
+ const zoom : number = 15 ;
48
48
49
- return (
50
- < MapContainer center = { position } zoom = { zoom } scrollWheelZoom = { false } >
51
- < TileLayer
52
- attribution = ' © <a href=" http://osm.org/copyright" >OpenStreetMap</a> contributors'
53
- url = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
54
- />
55
- { showMarkers && list . map ( ( item , index ) =>
56
- < Marker icon = { icon } key = { index } position = { [ item . lat , item . lon ] } title = { `${ item . englishProductName } at ${ item . vendor } ` } >
57
- < Popup >
58
- < strong > { item . englishProductName } at { item . vendor } </ strong > < br />
59
- < p > Look for < strong > { item . productName } </ strong > on the menu.</ p >
60
- < p >
61
- { item . location } </ p >
62
- { item . description &&
63
- < em > { item . description } </ em >
64
- }
65
- </ Popup >
66
- </ Marker >
67
- ) }
68
- </ MapContainer >
69
- )
49
+ return (
50
+ < MapContainer center = { position } zoom = { zoom } scrollWheelZoom = { false } >
51
+ < TileLayer
52
+ attribution = " © <a href=' http://osm.org/copyright' >OpenStreetMap</a> contributors"
53
+ url = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
54
+ />
55
+ { showMarkers && list . map ( ( item , index ) =>
56
+ < Marker icon = { icon } key = { index } position = { [ item . lat , item . lon ] } title = { `${ item . englishProductName } at ${ item . vendor } ` } >
57
+ < Popup >
58
+ < strong > { item . englishProductName } at { item . vendor } </ strong > < br />
59
+ < p > Look for < strong > { item . productName } </ strong > on the menu.</ p >
60
+ < p >
61
+ { item . location } </ p >
62
+ { item . description &&
63
+ < em > { item . description } </ em >
64
+ }
65
+ </ Popup >
66
+ </ Marker >
67
+ ) }
68
+ </ MapContainer >
69
+ )
70
70
} ;
0 commit comments