Your Score
{{ score }} / {{ totalQuestions }}
{{ correctPercent }} % Correct {{ incorrectPercent }} % Wrong {{ activeSetLabel }} Seed {{ seed }}
{{ card.label }}
{{ card.value }}

Match each outline to its {{ promptNoun }}. Choose how many questions you want and optionally set a seed to make a shareable quiz.

Loading map data… Pool size: {{ poolSize }}
{{ loadError }}
{{ progressPercent }} %
{{ uxProgressLabel }}
{{ questionHeading }}
# Outline Your Answer Correct Copy
{{ i + 1 }} {{ row.yourAnswer }} {{ row.correctAnswer }}

                
:

Introduction

Map outlines strip away labels, colors, and internal detail so that only boundary shape remains. That makes them useful for geography practice because they test a very specific skill: whether the silhouette alone is enough for you to recognize a place. This quiz turns that idea into a repeatable drill for US states, US states plus territories, or world countries.

The package shows one outline at a time, gives four answer choices, and keeps score as you move through the round. When the session ends, it adds a review table, a small answer chart, and a JSON export so you can look past the headline percentage and see where the misses actually happened.

The optional seed is what makes the page especially useful for structured study. With the same set, question count, and seed, the package rebuilds the same question order and the same shuffled answer order. That turns a casual quiz into a controlled comparison round for students, teachers, trivia teams, or anyone who wants to measure recall instead of just playing until the draw feels lucky.

Outline recognition still has limits. A correct answer here means you recognized the silhouette among four choices drawn from the active pool. It does not prove open-ended recall, map placement skill, or deeper geographic knowledge such as capitals, bordering countries, or political history. Smaller pools can also feel harder than world-wide rounds because the distractors become more visually similar.

The page also depends on external map assets. Question scoring stays in the browser, but the outline data and some supporting scripts are fetched from remote CDNs. That matters mostly for network expectations and privacy framing: the quiz state remains local, yet the session is not a completely self-contained offline bundle.

Everyday Use & Decision Guide

Choose the set first, because it changes the meaning of every later score. The plain United States (US) States mode keeps only the 50 states. United States (US) States + Territories adds the District of Columbia and the five shipped territories. World Countries uses the broader country outline pool. A result from one set should not be read as interchangeable with a result from another.

The question-count choice is package-defined rather than fully arbitrary. The state sets offer fixed round lengths, and the world set has its own fixed options. That is useful for comparison because it keeps sessions within known sizes and prevents a round from exceeding the currently loaded pool.

If you are measuring progress, set the seed deliberately and keep it fixed across retakes. That removes a large source of randomness from both the question order and the distractor order. If you are exploring rather than benchmarking, leave the seed blank and let the page generate a fresh one at the start of the round.

The most informative result is usually the review table, not the score badge. The score tells you how many you got right. The row-by-row result shows which silhouettes caused trouble and whether the misses cluster around a specific type of confusion, such as coast-heavy countries, compact inland shapes, or US states with similar rectangular profiles.

How to choose the right quiz setup for common study goals
Goal Recommended setup Why it helps
Broad baseline check World Countries or a longer state round Shows whether general shape recognition is spread across a large pool.
Focused US practice US States with a fixed seed Makes it easier to compare repeated sessions without territory-related noise.
Controlled retest after study Same set, same count, same seed Rebuilds the same round so score changes are easier to trust.
Fresh mixed challenge Same set, new seed Keeps the overall topic constant while changing the sampled outlines and answer order.

Technical Details

The package loads map geometry from two external TopoJSON sources: us-atlas for the state-based sets and world-atlas for the country set. The state-only mode filters out the District of Columbia and the five territory names hard-coded in the bundle, while the broader US mode keeps them. The world mode uses the countries object from the fetched world atlas source without an extra package-side subset list.

Once a source is loaded, the quiz reduces each feature to a simple name-and-code pair for selection and keeps the underlying feature data in memory for outline rendering. The outline image is not a downloaded raster. The package converts each polygon or multipolygon into an inline SVG data URI, computes a bounding box, applies a uniform scale, and centers the silhouette inside a fixed 520 by 320 frame with padding. That keeps the visual cadence stable even when the original geometries have very different aspect ratios.

Question generation is deterministic when a seed is present. The package builds a pseudo-random number generator from the seed text, shuffles the active pool, takes the requested number of questions without replacement, then chooses up to three distinct distractor names from that same pool for each prompt before shuffling the answer order again. When the seed field is blank, the page creates a timestamp-based seed at quiz start.

Scoring is deliberately simple: one point per correct answer, plus correct and incorrect percentages rounded to whole numbers. The package also tracks answered count, completion percentage, and a row-by-row result ledger. That ledger is what powers the exported CSV and DOCX outputs, while the chart tab summarizes the session as a two-slice correct-versus-wrong view and supports image or CSV export of the chart data.

Core package behaviors for the map outlines quiz
Component What it does Why it matters
Seeded shuffle Rebuilds the same question sequence and answer ordering when the same inputs are reused. Makes before-and-after comparison far more credible.
No-repeat question draw Selects the active round without replacement. Prevents duplicate silhouettes inside one session.
Same-pool distractors Builds wrong answers from the same active set as the correct outline. Keeps the quiz relevant to the chosen geography instead of mixing in obviously unrelated answers.
Normalized SVG rendering Fits every outline into a fixed frame after bounding-box scaling and centering. Keeps large and small shapes visually comparable on screen.
Review exports Supports CSV, DOCX, chart image or CSV, and JSON output after the round ends. Turns the quiz into a reusable study artifact instead of a disposable score screen.

The privacy behavior is straightforward but not fully closed. The quiz state itself lives in browser memory, and the code does not ship a tool-specific backend helper or browser storage path for saved sessions. At the same time, the set, question count, and seed are synchronized through the page URL, and the page fetches external geometry and script assets from CDN-backed sources. That means answers stay local, yet the session still makes ordinary network requests for its supporting data.

The largest interpretation limit is the source geometry itself. Small-scale atlas data is generalized for broad map use, so coastlines and borders are simplified compared with high-detail reference mapping. That is appropriate for a silhouette quiz, but it also means the exact rendered outline is a study-friendly representation rather than a legal or survey-grade boundary depiction.

Step-by-Step Guide

  1. Choose the quiz set that matches the geography you want to practice.
  2. Select one of the package-defined question counts for that set.
  3. Enter a seed if you want a repeatable round, or leave it blank for a fresh generated sequence.
  4. Start the quiz and answer each outline from the four shown choices.
  5. After the round, read the score badges first, then use the review table to see exactly where mistakes happened.
  6. Open Answer Chart for a compact visual summary, and JSON when you want the full session structure.
  7. Retake the same seed for a controlled comparison or use a new seed for a fresh sample from the same geography set.

Interpreting Results

The headline percentage is best read as a session result, not a universal geography score. A 70 percent world-country round and a 70 percent US-state round are not measuring the same kind of difficulty, because the active pools, shapes, and distractor environments are different.

The most defensible comparison is same set, same question count, same seed. In that situation, a higher score usually reflects stronger recognition of the same exact silhouettes and answer positions that appeared before. Change any of those three inputs and you are running a new test, not a clean retest.

A smaller or more focused set can feel harder rather than easier. Once the active pool becomes narrower, the wrong answers often resemble the right one more closely. The review table is therefore more useful than the pie chart when you are trying to diagnose what went wrong, because it preserves the specific confusion pairs instead of collapsing them into one incorrect total.

How to read common score patterns
Pattern What it usually suggests What to do next
High score on the same seeded retake Recognition improved for the exact session you repeated. Try a new seed next to see whether the improvement generalizes.
Good world score but weaker focused-set score Broad familiarity is present, but close silhouette discrimination still needs work. Study the wrong-answer pairs from the smaller set before returning to a broader pool.
Large swings on very short rounds The sample is small enough for luck and one or two difficult shapes to dominate. Repeat with the same seed or use a longer round before drawing conclusions.

It is also worth remembering what the quiz does not test. You do not have to type the answer from memory, place the region on a blank map, or explain why the boundary has its shape. The page measures silhouette recognition under four-choice conditions, which is useful, but narrower than complete geographic mastery.

Worked Examples

Teacher retest with the same seed

A teacher assigns a 20-question US states round with a fixed seed on Monday and repeats the exact same round on Friday after a study session. Because the package rebuilds the same order, the class can compare results without wondering whether the second quiz was simply easier.

Targeted practice on states and territories

A learner who already knows the 50 states switches to the broader US mode to include the District of Columbia and the territories. The resulting misses reveal whether the problem is truly state-outline recognition or a narrower gap in the less familiar additions.

Using world rounds as a study filter

A trivia player runs a world-country round with a fresh seed, then exports the result rows after finishing. The wrong answers become a focused study list for the next practice block instead of fading into a vague memory of "some coastlines looked similar."

FAQ

Can I replay the exact same round?

Yes. Reuse the same set, question count, and seed to rebuild the same question and answer ordering.

Are there duplicate outlines in one round?

No. Questions are selected without replacement from the active pool, so one outline appears at most once per session.

Does the world set update from live political changes?

No. The package uses shipped atlas sources fetched from their defined URLs. It is not a live geopolitical feed.

Does a high score mean I can place every region on a blank map?

Not necessarily. The page measures recognition from four choices, not open-ended map placement or broader geography knowledge.

What can I export after the round ends?

You can export the review table as CSV or DOCX, save the answer chart as PNG, WebP, JPEG, or CSV, and copy or download the structured JSON session record.

Glossary

Seed
A text value used to rebuild the same shuffle order when the same quiz settings are reused.
Active pool
The current set of regions eligible to appear in the round.
Distractor
An incorrect answer choice shown alongside the correct region name.
TopoJSON
A topology-preserving geographic data format used here as the source geometry for outlines.
Generalized boundary
A simplified map shape designed for broad display rather than high-detail legal or survey use.