Back to blog
tutorial

Getting Started with GeoTasker: Create Your First Map Video

Learn how to create stunning animated geospatial story videos with AI. This beginner's guide walks you through the entire process from prompt to final video.

3 min read|GeoTasker Team
beginnertutorialmapsvideo
Getting Started with GeoTasker: Create Your First Map Video

Getting Started with GeoTasker

GeoTasker makes it easy to create animated geospatial story videos using natural language. Just describe what you want, and AI handles the rest.

What You Can Create

With GeoTasker, you can create videos that:

  • Tell geographic stories with animated map movements and annotations
  • Visualize data through choropleth maps and charts
  • Engage audiences with professional narration and background music

Pro Tip

Start with simple prompts and iterate. GeoTasker works best when you provide clear, specific descriptions of what you want to visualize.

Your First Video: A Simple Example

Let's create a video showing the capitals of Europe. Here's a sample prompt:

Create a 30-second video tour of European capitals. Start with London,
then fly to Paris, Berlin, and Rome. Show each city name with a marker
and add a brief fun fact about each capital.

What GeoTasker Does

  1. Parses your intent - Understands you want a map tour with annotations
  2. Generates the story - Creates a structured video plan with segments
  3. Renders the video - Produces an MP4 with smooth map animations
  4. Adds narration - Synthesizes natural-sounding voiceover
  5. Applies music - Adds appropriate background music

See It in Action

Watch how GeoTasker takes a prompt, generates a story plan, and renders the final video — all through a simple chat interface:

GeoTasker UI walkthrough — from prompt to video generation

Video Output

And here's the finished video:

GeoTasker in action — creating animated geospatial story videos

Warning

Processing time varies based on video complexity. Simple videos take 1-2 minutes, while complex multi-segment videos may take 5-10 minutes.

Advanced Features

Once you're comfortable with basic videos, explore these advanced features:

FeatureDescription
Choropleth MapsData-driven color coding by region
Multi-LanguageNarration in 32+ languages
Custom MusicChoose from multiple background music styles
Chart OverlaysAdd animated charts to your map videos

Code Example

If you're integrating GeoTasker into your application, here's a basic API example:

create_video.py
import time
import requests

API_KEY = "gt_live_your_key_here"
headers = {"X-API-Key": API_KEY}

# Generate a video from a text prompt
resp = requests.post(
  "https://geotasker.ai/api/v1/generate",
  headers=headers,
  json={
      "prompt": "Create a 30-second tour of European capitals",
      "options": {
          "resolution": "1080p",
          "music_style": "Cinematic"
      }
  }
)
task = resp.json()
print(f"Task created: {task['id']}")

# Poll until the video is ready
while True:
  status = requests.get(
      f"https://geotasker.ai/api/v1/videos/{task['id']}",
      headers=headers
  ).json()
  print(f"Status: {status['status']} | Progress: {status.get('progress', '-')}%")

  if status["status"] == "completed":
      print(f"Video ready: {status['video_url']}")
      break
  elif status["status"] == "failed":
      print(f"Error: {status.get('error')}")
      break

  time.sleep(5)

Next Steps

Ready to create your own map videos? Here's what to do next:

  1. Sign up at geotasker.ai
  2. Write your first prompt describing the video you want
  3. Iterate and refine based on the output
  4. Share your creation with the world!

Info

Free tier includes $5 credit (approximately 1-2 videos). Check out pricing for Pro and Enterprise plans.


Questions? Join our community on Discord or leave a comment below. We'd love to see what you create!

Create Your Own Geospatial Story Videos

GeoTasker uses AI to transform your ideas into stunning animated map videos with narration, captions, and music.

Try GeoTasker Free

Comments