Writing Do you create a map for your story?

BlackKnightX

Well-known member
Joined
Jun 8, 2021
Messages
1,680
Points
153
Do you create a map of your world, nation, town, city, or dungeon? How do you do it?
 

Motsu

Game Lead Programmer x WebAppSoft
Joined
Jun 24, 2020
Messages
1,096
Points
153
I usually do it like this,

import pygame

MAP_WIDTH = 800
MAP_HEIGHT = 600

pygame.init()

screen = pygame.display.set_mode((MAP_WIDTH, MAP_HEIGHT))
pygame.display.set_caption("Map Example")

# Create a 2D array representing the map tiles
map_data = [
[1, 1, 1, 1, 1],
[1, 0, 0, 0, 1],
[1, 0, 0, 0, 1],
[1, 0, 0, 0, 1],
[1, 1, 1, 1, 1]
]

tile_width = MAP_WIDTH // len(map_data[0])
tile_height = MAP_HEIGHT // len(map_data)

running = True
while running:
# Handle events
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
for row in range(len(map_data)):
for col in range(len(map_data[row])):
tile = map_data[row][col]
tile_rect = pygame.Rect(col * tile_width, row * tile_height, tile_width, tile_height)

if tile == 1:
pygame.draw.rect(screen, BLUE, tile_rect)
elif tile == 0:
pygame.draw.rect(screen, GREEN, tile_rect)

pygame.display.flip()

pygame.quit()
 

Lorelliad

creating magic in a magic-less world 🪄
Joined
May 31, 2021
Messages
1,423
Points
153
It's more of a thing in my head. I mulled on whether I should put my time into those map making sites, but I could never find said time
 
D

Deleted member 54065

Guest
Yep...

285628355_119759767406500_950064621831740574_n.jpg


285979691_119765224072621_4912453162263205741_n.jpg


285521322_119770077405469_1082969539975939251_n.jpg


I use Inkarnate, Photoshop (for added effects), and a graphic pen tablet.

285435372_119765144072629_8805477607448537864_n.jpg


285202520_119765130739297_7636175457008151977_n.jpg


Free Inkarnate is already enough, usually.
 

Syringe

Bluetooth 7 Enabled Holy Blade w/ Red Dot Sight
Joined
Jul 17, 2019
Messages
459
Points
133
Use a map making tool. There are lots of amazing free software out there to help you out. Inkarnate and Azgaar's Fantasy Map Generator come to my mind.

Made with Azgaar's Fantasy Map Generator:
1685668319497.png


For paid, Wonder Draft is pretty good and what I now personally use.


1685668777371.png

1685668861094.png

The trick is to either make the landmasses and populate it, or know what you want and shape the world with them in mind. Just throw whatever at the screen and build off it. It'll shape itself as you want to add/remove stuff. For beginners, map making is more like a sculpting process.

Chuck one big blob on the screen and start chipping away.

Also you can always use other maps for reference. No harm in that.
 

Bobple

Well-known member
Joined
Feb 9, 2022
Messages
272
Points
133
I haven't, yet. But I might do for a story where the locations are more relevant.
 

Paul_Tromba

Sleep deprived mess of a published author
Joined
Jan 29, 2020
Messages
4,298
Points
183
Take a whole bunch of dice and roll them out on a paper. Draw around the big clumps. High rolls are mountains/buttes while low rolls are valleys. Mid rolls are plains. Simple, easy, works well every time.
 

ArcadiaBlade

I'm a Lazy Writer, So What?
Joined
Dec 23, 2018
Messages
886
Points
133
I am as directionally inept as in real life. Do you think that I won't get lost the moment I would go outside and touch grass? Most of my adventures actually came from me constantly getting lost.
 

TheEldritchGod

A Cloud Of Pure Spite And Eyes
Joined
Dec 15, 2021
Messages
2,905
Points
153
I DM'd D&D for 25 years. I could wake up after a three day bender with a sewage filled baby rattle and missing a sneaker and with a full set of dice I'd be ready to wing an entire campaign from scratch. I have everything from the cosmological arrangement of interdimensional planes of existence and how they interact in higher dimensions right down to the layout of the starting tavern where everyone meets for the first time worked out by the time you have finished choosing your dump stat.

Maybe I'll sketch out a few notes here and there if I think something is important, but I just know where everything is reflexively at this point. Running once a week for decades will do that.
 

Jacks

New member
Joined
Jul 29, 2023
Messages
16
Points
3
Yes, I made a map for the fantasy world of the story I'm writing. It makes it easy for myself to imagine how the characters have to travel/ territory/ nearby landmark. I think it would make the world feel more authentic and real.

In my novel, I include pictures to help better illustrate my story.

So somewhere in the future, I would include the map I've made when it becomes relevant.
 

J_Chemist

Well-known member
Joined
Jun 17, 2022
Messages
1,944
Points
128
I originally did not have a map. However, when I realized the scope of my project of a story, I discovered that having a visual representation of the world so I could not only pinpoint my Character's current location but also where they've been, and solidify world details, would be critical to continuity.

 

BlackKnightX

Well-known member
Joined
Jun 8, 2021
Messages
1,680
Points
153
I originally did not have a map. However, when I realized the scope of my project of a story, I discovered that having a visual representation of the world so I could not only pinpoint my Character's current location but also where they've been, and solidify world details, would be critical to continuity.

That looks awesome. How did you create that? Did you commission?
 

AliceShiki

Magical Girl of Love and Justice
Joined
Dec 23, 2018
Messages
3,530
Points
183
I don't because my stories don't need it.

If there was a lot of traveling, I'd probably consider making one.

If the story stays mostly focused on one location though, then a map is absolutely unnecessary.

And even if it happens in multiple locations, if the relative distance between one location and another is also unnecessary, then a map is unnecessary. You can just say "This place is close/far" and that's enough.
 
Top