Skip to content

Commit 4bfc448

Browse files
authored
Merge pull request #130 from VCGithubCode/CG-prideful-branch
Remove Leaflet map and add interactive map to readme
2 parents f69701e + ab5a3ca commit 4bfc448

File tree

4 files changed

+16
-22
lines changed

4 files changed

+16
-22
lines changed

README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,22 +257,31 @@ The Inclusive Spots website was created utilizing agile methodologies to boost t
257257

258258
[Return to Table of Contents](#table-of-contents)
259259

260-
### Future Features
260+
## Future Features
261261

262-
## Resources Page with Interactive Map
262+
### Resources Page with Interactive Map
263263
We are planning to introduce a comprehensive Resources page to provide users with essential information and links to helpful venues categorized into Cafes, Support Centers, and Clubs. This page aims to support the community by offering easy access to places that promote inclusivity and support.
264+
264265
## Categories
265-
# Cafes
266+
267+
### Cafes
266268
Welcoming environments ideal for socializing, working, or relaxing. Known for inclusive policies and a friendly atmosphere.
267-
# Support Centers
269+
270+
### Support Centers
268271
Essential services and support for mental health, career counseling, and community assistance. Safe spaces dedicated to helping individuals navigate challenges.
269-
# Clubs
272+
273+
### Clubs
270274
Social and recreational activities fostering community and belonging, including sports clubs, book clubs, and social groups.
275+
271276
## Features
272277
Search and Filter: Easily search for specific venues or filter by category.
273278
Detailed Information: Venue listings include address, contact info, opening hours, and special features.
274279
User Reviews: Users can leave reviews and ratings for venues.
275280

281+
282+
## Interactive Map
283+
To enhance user experience, an interactive map feature will be integrated, allowing users to visualize the location of each venue with functionalities like geolocation, pins and markers, info windows, map filters, and directions.
284+
276285
[Return to Table of Contents](#table-of-contents)
277286

278287
## Deployment

pridefulproject/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
DEBUG = 'DEV' in os.environ
3434

35-
ALLOWED_HOSTS = ['localhost', '127.0.0.1', '8000-vcgithubcod-pridefulpro-ylizso8vcqo.ws.codeinstitute-ide.net', 'inclusive-spots-eeb5d9ac8ebf.herokuapp.com',
35+
ALLOWED_HOSTS = ['localhost', '127.0.0.1', '8000-vcgithubcod-pridefulpro-z7xzselbhil.ws.codeinstitute-ide.net', 'inclusive-spots-eeb5d9ac8ebf.herokuapp.com',
3636
'8000-vcgithubcod-pridefulpro-8r1r6tqbp3s.ws-eu115.gitpod.io', '8000-vcgithubcod-pridefulpro-dy6ggmsyu7x.ws.codeinstitute-ide.net'
3737
,'prideful-programmers-01c026806d6f.herokuapp.com'
3838
]

static/js/script.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +0,0 @@
1-
var map = L.map('map').setView([50.2649, 19.0238], 12);
2-
3-
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
4-
attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
5-
}).addTo(map);
6-
7-
L.marker([50.2649, 19.0238]).addTo(map)
8-
.bindPopup('Hello world!<br> I have attended this conference.')
9-
.openPopup();

templates/base.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
<!-- Fontawesome - Script -->
1010
<script src="https://kit.fontawesome.com/c3c0f5e49e.js" crossorigin="anonymous">
1111
</script>
12-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
13-
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
14-
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
1512

1613
<!-- Bootstrap CSS - Link (Critical CSS) -->
1714
<link
@@ -36,10 +33,7 @@
3633
{% endblock content %}
3734
</main>
3835
{% include 'includes/footer.html' %}
39-
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>
36+
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></>
4037
<script defer src="index.js"></script>
41-
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
42-
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
43-
<script href="{% static 'js/script.js' %}"></script>
4438
</body>
4539
</html>

0 commit comments

Comments
 (0)