diff options
author | Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> | 2023-07-31 08:44:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-31 08:44:45 +0000 |
commit | d58c5425799335ea57f27461f99ddd1078e9b2de (patch) | |
tree | 917fac7672c6204e9b928385f856a5156e9dbec2 /custom | |
parent | 72363be7caa3c253e08daf058e5aebd6e795f0ef (diff) | |
download | gitea-d58c5425799335ea57f27461f99ddd1078e9b2de.tar.gz gitea-d58c5425799335ea57f27461f99ddd1078e9b2de.zip |
Add 'Show on a map' button to Location in profile, fix layout (#26214)
Not too important, but I think that it'd be a pretty neat touch.
Also fixes some layout bugs introduced by a previous PR.
---------
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-authored-by: Caesar Schinas <caesar@caesarschinas.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index e5f72d436c..94c15a60d9 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -827,6 +827,15 @@ LEVEL = Info ;; Dependencies can be added from any repository where the user is granted access or only from the current repository depending on this setting. ;ALLOW_CROSS_REPOSITORY_DEPENDENCIES = true ;; +;; Default map service. No external API support has been included. A service has to allow +;; searching using URL parameters, the location will be appended to the URL as escaped query parameter. +;; Disabled by default, some example values are: +;; - OpenStreetMap: https://www.openstreetmap.org/search?query= +;; - Google Maps: https://www.google.com/maps/place/ +;; - MapQuest: https://www.mapquest.com/search/ +;; - Bing Maps: https://www.bing.com/maps?where1= +; USER_LOCATION_MAP_URL = +;; ;; Enable heatmap on users profiles. ;ENABLE_USER_HEATMAP = true ;; |