Skip to content

Commit fd11c95

Browse files
committed
Tabs to spaces, single quotes to double quotes
1 parent f1473f1 commit fd11c95

File tree

2 files changed

+64
-64
lines changed

2 files changed

+64
-64
lines changed

src/App.tsx

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import React from 'react';
2-
import './App.css';
1+
import React from "react";
2+
import "./App.css";
33
import FavoritesMap from "./components/FavoritesMap";
44

55
function App() {
6-
return (
7-
<div className="App">
8-
<h1>Top 3 hot chocolate locations in Oslo</h1>
9-
<FavoritesMap />
10-
</div>
11-
);
6+
return (
7+
<div className="App">
8+
<h1>Top 3 hot chocolate locations in Oslo</h1>
9+
<FavoritesMap />
10+
</div>
11+
);
1212
}
1313

1414
export default App;

src/components/FavoritesMap.tsx

+56-56
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
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";
44
import React from "react";
55
import { HotChocolate } from "../domain/domain";
66

77
const showMarkers = window.location.hash === "#show-markers";
88

99
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+
}
3535
];
3636

3737
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]
4242
});
4343

4444
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;
4848

49-
return (
50-
<MapContainer center={position} zoom={zoom} scrollWheelZoom={false}>
51-
<TileLayer
52-
attribution='&copy; <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="&copy; <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+
)
7070
};

0 commit comments

Comments
 (0)