diff --git a/docs/changelog.txt b/docs/changelog.txt
index f750a3c..00f5c3d 100644
--- a/docs/changelog.txt
+++ b/docs/changelog.txt
@@ -2,6 +2,8 @@ changelog
-- next
++ Option to switch map links to Apple.
+
-- 0.8.2
++ Import command to preserve those embarssassing old posts from Twitter.
diff --git a/docs/honk.1 b/docs/honk.1
index a34d65e..299802d 100644
--- a/docs/honk.1
+++ b/docs/honk.1
@@ -164,6 +164,15 @@ It also allows the import of external objects via URL, either individual
posts or actor URLs, in which case their recent outbox is imported.
.Ss Account
It's all about you.
+.Pp
+Some options to customize the site appearance:
+.Bl -tag -width skinny
+.It skinny
+Use a narrower column for the main display.
+.It apple
+Prefer Apple links for maps.
+The default is OpenStreetMap.
+.El
.Sh ENVIRONMENT
.Nm
is designed to work with most browsers, but for optimal results it is
diff --git a/honk.go b/honk.go
index c38e71a..7b46f6c 100644
--- a/honk.go
+++ b/honk.go
@@ -48,6 +48,7 @@ type WhatAbout struct {
type UserOptions struct {
SkinnyCSS bool `json:",omitempty"`
Avatar string `json:",omitempty"`
+ MapLink string `json:",omitempty"`
}
type KeyInfo struct {
diff --git a/views/account.html b/views/account.html
index 8b956ff..c6425eb 100644
--- a/views/account.html
+++ b/views/account.html
@@ -10,6 +10,8 @@
+
+
diff --git a/views/honk.html b/views/honk.html
index 61e4e74..805b366 100644
--- a/views/honk.html
+++ b/views/honk.html
@@ -1,6 +1,7 @@
{{ $bonkcsrf := .BonkCSRF }}
{{ $IsPreview := .IsPreview }}
+{{ $maplink := .MapLink }}
{{ with .Honk }}
{{ if $bonkcsrf }}
@@ -60,7 +61,7 @@ in reply to: {{ .RID }}
{{ if .Duration }} Duration: {{ .Duration }}{{ end }}
{{ end }}
{{ with .Place }}
-
Location: {{ with .Url }}{{ end }}{{ .Name }}{{ if .Url }}{{ end }}{{ if or .Latitude .Longitude }} {{ .Latitude }} {{ .Longitude }}{{ end }}
{{ end }}
{{ range .Donks }}
{{ if .Local }}
diff --git a/views/honkfrags.html b/views/honkfrags.html
index 30f6a30..91cc004 100644
--- a/views/honkfrags.html
+++ b/views/honkfrags.html
@@ -1,8 +1,9 @@