惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

HN's home page

Rainbow Query Language | Hacker News Exec into Node via Kubectl An AI native hedge fund The Seven-Action Documentation Model | Hacker News Package Manager for Kubectl Plugins Tongan Castaways | Hacker News Tech overlords plan for conscious AI to conquer the cosmos. What could go wrong? Data Breach Disclosure Lag Is Getting Worse How LLMs Work | Hacker News I Dropped PRDs for Shape Up Go Experiments Explained | Hacker News FCA's Palantir deal could expose UK financial data to Trump's US, critics fear WebXR BCI for Neural-Adaptive Avatar Control in Mixed Reality The first murder conviction via DNA analysis Tom Interviews Theo de Raadt of the OpenBSD Project (2019) [video] Show HN: Replace shell commands with bun shell typescript scripts Quay.io Is Down | Hacker News AI driven analysis of brokerage account fees in the UK Bill Gates Spent Years Crafting His Image. Now It's Cracking Using LLMs to secure source code Wi-Fi 8 in the Lab [video] The household battery revolution that could change energy bills and the world Is Python Becoming Pinyin? | Hacker News Livia – Executive Assistant | Hacker News FindMyPipe – Query Apple Find My from Linux for AI Agents Show HN: Agent skill for creating product launch videos with Remotion RecruitMyself – AI job search copilot for resumes and applications AI coding agents and the erosion of system understanding The 'Resting' Generation and South Korea's Youth Recession AMD Computex 2026: 10 Years of AM4, AM5 Support Through 2029
Show HN: Askmaps.ai – Like ChatGPT with a Map
fabino · 2026-06-22 · via HN's home page

Hi all! AskMaps is a side project of mine. You chat with an LLM (Claude, GPT, or DeepSeek, your pick) and the places it mentions show up on an interactive map as you talk.

The backstory: about a year ago I took a few spontaneous trips through Europe and didn't want to spend ages researching beforehand. I asked Claude instead, and it turned out to be a really good travel advisor. For most destinations it has a ton of good tips. The only thing that sucked was the UX. Copy-pasting place names into Google Maps one by one is tedious, and it's even worse on your phone once you're already there and just want to see what's nearby. So I built myself something that works the way I wanted, and figured it might be useful to you too.

I know Claude and ChatGPT can sort of show things on a map themselves, but it's not really usable. It's buried in the chat history, it isn't interactive, and you can't see where you actually are right now.

I started building in October, had a first version in November, and have been dogfooding it hard on my own trips since. It's at the point now where I rely on it. It factors in the weather and your current location, and it'll warn you before you book a flight somewhere you shouldn't (thanks to their training cutoff LLMs will happily recommend a sightseeing trip through the Persian golf region). You can also group several chats into a project so they share context across one trip.

There's a demo with some example conversations you can click through, or you can sign up and try it for real, you get some free messages. I had to put it behind a signup because leaving a chat window open to the whole internet would kill my wallet.

The two biggest challenges I faced were geocoding reliability and LLM costs.

For geocoding, I didn't just want pins, I wanted real geometry wherever possible. A pin labeled "Le Marais" is fine, but if I'm standing nearby I'd rather see the actual area than eyeball it. OpenStreetMap is the obvious source, but you have to fight it. Ask for a neighborhood and it'll happily hand you a random bus stop, or a POI with the same name on the other side of the city. So the geocoder grew into a whole system: multiple sources of truth, custom ranking and automated conflict resolution via LLMs.

With the LLM, I started on Sonnet 4.5 because it's great, and it (then 4.6) stayed the gold standard for a long while. A lot of the work went into keeping it cheap: maximizing cache hits and cutting tool-loop iterations, since with Claude every extra round trip means a fresh cache point and more money. Then DeepSeek cooked with V4 Pro. After a lot of testing and tuning it came out roughly on par with Sonnet at about 20% of the cost, so it's the default now. Works great, and keeps credit usage down for users too.

Happy to answer anything!