Module talk:Mapframe: Difference between revisions

Content deleted Content added
m Archiving 1 discussion(s) to Module talk:Mapframe/Archive 2) (bot
 
(42 intermediate revisions by 15 users not shown)
Line 13:
}}
 
== Thumbnail rendering issue in [[José Salvador Alvarenga]] ==
== Copying template to another language wiki ==
 
Point 1 and most of the line not visible, something to do with the 180th meridian line. Same issue on the [[:fr:José_Salvador_Alvarenga|fr]] and [[:zh:荷西·薩爾瓦多·阿爾瓦倫加|zh]] pages. Also is there a way to make the 180 line not visible? [[User:Sohryu Asuka Langley Not Shikinami|Sohryu Asuka Langley Not Shikinami]] ([[User talk:Sohryu Asuka Langley Not Shikinami|talk]]) 05:28, 29 April 2025 (UTC)
Hi, I would like to request that this template, together with its dependencies be copied over to the Bulgarian wiki. There are a lot of pages that would benefit from it and there is currently no alternative template to use. The parameters can be left as is, but if needed I can translate them over.
 
:@[[User:Sohryu Asuka Langley Not Shikinami|Sohryu Asuka Langley Not Shikinami]] This is a bug. Only happens in "View mode". But I propose you to take some screenshot of OSM map, for this track, modify that and upload it using template OpenStreetMap in WikiCommons. Best regards. [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 06:19, 29 April 2025 (UTC)
== Inserting textual markers ==
 
== How not dispay top right square for "Show in full screen" ==
Hi, is there any way to place textual markers? For example to show different faculties of [[Sharif University of Technology|Sharif university]] we need textual markers, i.e., for:
{{Infobox mapframe|wikidata=yes |zoom=16| stroke-width=1 |shape-fill-opacity=0|geomask=Q2096604|frame-lat=35.70323088060118|frame-long=51.35156382947811|marker=college|frame-width = 400|frame-height = 500|id=Q2096604}}
* a textual marker for Electrical faculty, another for Computer faculty etc. is needed. How can I mark them with pointers? Thanks,
[[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 07:23, 12 April 2024 (UTC)
 
Hi, is there anyway to avoid showing top right while square ([ ]) for "Show in full screen"? Sometime this square disrupts the map. Thanks, [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 13:41, 5 May 2025 (UTC)
:You can't have points that show text on top of the thumbnail map on {{tl|infobox mapframe}} or {{tl|mapframe}} [[mw:Kartographer|Kartographer]] based maps, only when they are clicked on in full screen. If you want multiple points, have to use {{tl|mapframe}} only. So:
 
:Don't think you can. Just increase the height of the frame to accommodate the map. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 20:10, 7 May 2025 (UTC)
:{{mapframe
::@[[User:The Equalizer|The Equalizer]] Implementation of "Hide" does not seem so hard. Just add an argument named "|hide square=yes" and then in the span of OSM map apply this style "display: none;".
|frame=yes
::Hiding this square is very useful for many Wikipedia maps, especially for small ones. So it worths implementation. Thanks, [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 04:01, 8 May 2025 (UTC)
|plain=yes
:::I thought the box is also a subtle hint that it's a clickthrough and scalable, not just a static picture. But propose the removal via Phab if desired. [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 18:34, 8 May 2025 (UTC)
|width=250|height=200
::::@[[User:The Equalizer|The Equalizer]] No need for request of Phabricator. We should set "display:none;" CSS property for ".mw-kartographer-fullScreen" class. I tested it successfully in the inspector view my inspector of my browser.
|type=shape-inverse
::::I think it can be implemented by modifying this template only.
|id=Q2096604
::::Line 1108 add
|title=Shape
<syntaxhighlight>
|description=Desc of shape
displaysquare = util.getParameterValue(args, "displaySquare") or L10n.defaults.displaySquare,
|frame-coord={{coord|35.703|51.351|display=i}}
|zoom=14
|frame-align=left
|stroke-width=1
|type2=point|coord2={{coord|35.7062|51.3495}}|title2=Point A|description2=Description of point A|marker2=college
|type3=point|coord3={{coord|35.7061|51.3510}}|title3=Point B|description3=Description of point B
|type4=point|coord4={{coord|35.7020|51.3519}}|title4=Point C|description4=Description of point C|marker4=college}}
{{clear}}
:<syntaxhighlight lang="wikitext">
{{mapframe
|frame=yes
|plain=yes
|width=250|height=200
|type=shape-inverse
|id=Q2096604
|title=Shape
|description=Desc of shape
|frame-coord={{coord|35.703|51.351|display=i}}
|zoom=14
|stroke-width=1
|type2=point|coord2={{coord|35.7062|51.3495}}|title2=Point A|description2=Description of point A|marker2=college
|type3=point|coord3={{coord|35.7061|51.3510}}|title3=Point B|description3=Description of point B
|type4=point|coord4={{coord|35.7020|51.3519}}|title4=Point C|description4=Description of point C|marker4=college
}}
</syntaxhighlight>
::::and line 962 add
<syntaxhighlight>
if options.displaySquare == "no" then
local whiteSquare = assert(document:getElementsByClassName("mw-kartographer-fullScreen"))
whiteSquare:css("display", "none")
</syntaxhighlight> [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 04:03, 9 May 2025 (UTC)
 
:I think this square is not required at all, therefore we can remove it as a default setting. Because there exists a tooltip for this purpose. [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 14:27, 9 May 2025 (UTC)
:Regards, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 22:36, 12 April 2024 (UTC)
::@[[User:The Equalizer|The Equalizer]] I really propose to implement textual markers. And I don't think its implementation would be hard. Such textual markers are really helpful. Do you agree? [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 05:38, 13 April 2024 (UTC)
:::Alternatively you can use the older map tools at [[Wikipedia:Maps for Wikipedia]]. If to be proposed, search Phab first as I am certain this will have been asked before, there likely may even be an open request for it. I am unsure why the powers that be chose to go with the icons only, maybe as going forward it was to be implemented as an update. [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 08:13, 13 April 2024 (UTC)
::::@[[User:The Equalizer|The Equalizer]] The [[Template:OSM Location map]] exactly implements the same idea. Thanks, [[User:Hooman Mallahzadeh|Hooman Mallahzadeh]] ([[User talk:Hooman Mallahzadeh|talk]]) 08:53, 29 July 2024 (UTC)
 
== Failure to set frame-align=none ==
== [[2016 Irkutsk mass methanol poisoning]] ==
 
As the alignment of thumbnail images can be set to <code>none</code> (see [[Help:Pictures]]), its reasonable to let this module get support as well. Unfortunately, if I set {{para|frame-align|none}}, I see this notice: <nowiki><mapframe>: Attribute "align" has an invalid value</nowiki>. -- [[User:Great Brightstar|Great Brightstar]] ([[User talk:Great Brightstar|talk]]) 10:29, 20 May 2025 (UTC)
Is there a way to avoid {{tl|maplink}} appearing as a "frame within a frame" in the infobox? (This seems to be a desktop-specific issue.) [[User:The ed17|Ed]]&nbsp;<sup>[[User talk:The ed17|[talk]]]&nbsp;[[WP:OMT|[OMT]]]</sup> 18:54, 22 August 2024 (UTC)
:This map does not allow thumbnail-sized images yet. See [[Module_talk:Mapframe/Archive_2#Can_this_map_be_scaled_to_match_readers'_thumbnail_size_preferences?|this archived discussion from 2023]], and a [[Template_talk:Infobox_mapframe#How_do_I_set_the_mapframe_width_to_the_reader's_thumb_size_preference?|similar archived discussion from March 2025]]. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 00:48, 22 May 2025 (UTC)
 
== Edit request 28 May 2025 ==
:Is the affected user using a different skin or have bespoke [[Wikipedia:Common.js and common.css]] scripts. Regards, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 09:13, 23 August 2024 (UTC)
::With thanks to {{u|RoySmith}}, the map was [https://en.wikipedia.org/w/index.php?title=2016_Irkutsk_mass_methanol_poisoning&diff=1241739873&oldid=1241155680 fixed] probably before you saw it, {{u|The Equalizer}}. Looks like it needed |display=inline and |plain=yes parameters to look better. :-) [[User:The ed17|Ed]]&nbsp;<sup>[[User talk:The ed17|[talk]]]&nbsp;[[WP:OMT|[OMT]]]</sup> 18:09, 23 August 2024 (UTC)
:::As a follow-on to that, is there any way to get maplink to use something other than a mercator projection for the base map? Because north of the arctic circle. [[User:RoySmith|RoySmith]] [[User Talk:RoySmith|(talk)]] 15:35, 3 September 2024 (UTC)
::::I doubt it as Mapframe uses the [[mw:Extension:Kartographer]] module and only accesses Wikimedia maps which are based on OSM as you're all too well aware I am sure, see https://wiki.openstreetmap.org/wiki/Mercator. Using Mercator has known shortcomings, and that very scenario is acknowledged at [[mw:Wikimedia_Maps/2015-2017/Conversation_about_interactive_map_use#Pros_and_Cons_of_interactive_maps|Conversation about interactive map use#Pros and Cons of interactive maps]]. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 18:59, 3 September 2024 (UTC)
 
{{Edit template-protected|answered=yes}}
== "The JSON content is not valid GeoJSON+simplestyle." error message ==
 
'''Description of suggested change:'''
A new error message has been appearing where mapframe maps used to appear. The error message is "The JSON content is not valid GeoJSON+simplestyle." See [https://en.wikipedia.org/w/index.php?title=Norfolk_Southern%E2%80%93Gregson_Street_Overpass&oldid=1245486029 this version] of the [[Norfolk Southern–Gregson Street Overpass]] article, where I believe that a mapframe map used to appear. I wonder if something changed on the MediaWiki end of things, and how it might be addressed. I don't know if this is the talk page where I can find an answer, but I thought I would start here. Anyone? – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 12:34, 13 September 2024 (UTC)
On line 94, change "paramter" to "parameter."
:Hi there, am a bit late to the party. Looks like you've worked it out and fixed it with the revert. The error usually occurs when the <code>|map_type</code> parameter is removed from the infobox code, which is what happened on one of the prior edits during a cleanup. Regs, --[[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 23:09, 13 September 2024 (UTC)
::Thanks for fixing my signature. I thought I had canceled this post entirely. Hmm, it was strange. I don't think [https://en.wikipedia.org/w/index.php?title=Template%3AInfobox_bridge&diff=1245510032&oldid=1244986604 my revert at the infobox template] did anything to {{para|map_type}}. A bit of a mystery. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 01:27, 14 September 2024 (UTC)
 
'''Diff:'''
== JSON problem ==
{{TextDiff|1=valid values for type paramter|2=valid values for type parameter}} [[User:Shonebrooks|ShoneBrooks]] ([[User talk:Shonebrooks|talk]]) 15:00, 28 May 2025 (UTC)
:{{complete2}}. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I.&nbsp;Ellsworth</span>]]'''''&thinsp;,&nbsp;[[Editor|<span style="color:black">ed.</span>]]&nbsp;[[User talk:Paine Ellsworth|<sup>put'er&nbsp;there</sup>]]&nbsp;<small>20:29, 28 May 2025 (UTC)</small>
 
== Display in title ==
Hi. I'm trying to use "mapbox|from=Muro_da_Mauá.map" (with the surrounding double curly braces) at [[:en:Mauá_Wall#External_links]], but nothing shows up. [[commons:Data:Muro_da_Mauá.map]] seems fine (except for the zoom view, which I plan to fix later, adding bboxes). Any ideas, please? (I've exported the JSON becase relation:site is not supported yet.) Thanks! [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 02:11, 20 September 2024 (UTC)
 
There's this comment in the code, saying "[display=title] makes maplink wikitext that will be located in the top-right of the title of the page (the same place where coords with display=title are positioned)." That does not seem to work: the styles associated with id=coordinates cannot do that. Is this option even useful? I'm wondering if it should be removed from the template's documentation, it seems misleading. [[User:Ponor|Ponor]] ([[User talk:Ponor|talk]]) 20:30, 10 June 2025 (UTC)
:Fixed if you want to check. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 21:30, 20 September 2024 (UTC)
::Many thanks! What was wrong? I tried to follow [[:mw:Help:Extension:Kartographer/OSM#How_to_get_a_single_object_from_multiple_lines]]. [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 06:40, 21 September 2024 (UTC)
:::The json had errors so needed to be rebuilt. The Commons preview tolerates them but Wikipedia doesn't. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 16:01, 21 September 2024 (UTC)
 
:[[Special:Diff/1294960231|'''This edit''']] will put the display=title marker in the indicator area, which seems to work for all desktop skins, as can be seen at [[Template:Maplink/sandbox]] (as long as the module sandbox change is on). Is that what we want? [[User:Ponor|Ponor]] ([[User talk:Ponor|talk]]) 21:21, 10 June 2025 (UTC)
== Link to OSM relation ==
----
 
{{edit template-protected|answered=yes}}
Is it possible for {{tlx|mapframe}} to include a link to the OSM relation, please? Currently I use {{tlx|OSM relation}} separately. Thanks. [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 06:55, 21 September 2024 (UTC)
A naive search shows that there aren't that many articles that use {{tlx|mapframe|display{{=}}title}}, maybe no more than [https://en.wikipedia.org/w/index.php?title=Special:Search&limit=100&offset=0&ns0=1&search=hastemplate%3AMaplink+insource%3Adisplay+insource%3Atitle+insource%3A%2F%5BMm%5Daplink%5B%5E%7D%7B%5D%2Bdisplay+%2A%3D+%2A%5B%5E%7C%7D%5D%2Atitle%2F 50]. So I think it's safe to make [[Special:Diff/1294958307/1295035531|'''this change''']]. With it
* the module and template will do what they're supposed to do with {{para|display|title}}: the inline+title markers won't be shown next to each other in Vector-2022 (<span class="plainlinks">[https://en.wikipedia.org/wiki/Silver_Comet_Trail?useskin=vector-2022]</span>) nor the 'title' one will be placed on top of the infobox in Vector (<span class="plainlinks">[https://en.wikipedia.org/wiki/Silver_Comet_Trail?useskin=vector]</span>)
* the 'title' marker will be placed as the last of the [[:mw:Help:Page status indicators|indicators]] (the code added is mostly from that page)
* the resulting html code seems clean, and in line with what {{tlx|coord}} already does
{| class="wikitable plainlinks center"
! !!Vector 2022 !!Vector !!Monobook !!Timeless
|-
|[[TM:Maplink]]||[https://en.wikipedia.org/wiki/Template:Maplink?useskin=vector-2022] {{cross}} ||[https://en.wikipedia.org/wiki/Template:Maplink?useskin=vector] {{cross}} ||[https://en.wikipedia.org/wiki/Template:Maplink?useskin=monobook] {{tick}} ||[https://en.wikipedia.org/wiki/Template:Maplink?useskin=timeless] {{tick}}
|-
|[[TM:Maplink/sandbox]]||[https://en.wikipedia.org/wiki/Template:Maplink/sandbox?useskin=vector-2022] {{tick}} ||[https://en.wikipedia.org/wiki/Template:Maplink/sandbox?useskin=vector] {{tick}} ||[https://en.wikipedia.org/wiki/Template:Maplink/sandbox?useskin=monobook] {{tick}} ||[https://en.wikipedia.org/wiki/Template:Maplink/sandbox?useskin=timeless] {{tick}}
|}
Thanks, [[User:Ponor|Ponor]] ([[User talk:Ponor|talk]]) 13:50, 11 June 2025 (UTC)
:{{done}}<!-- Template:ETp --> Thanks, I had noticed this being broken a while ago and just did not want to deal with it at all. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 02:48, 28 June 2025 (UTC)
 
== Inconsistent map box ==
:Use the instructions on Kartographer in your earlier question, and change the type parameter for the shape on OSM to one of the four accepted, boundary is best. After some hours the Wiki maps server will copy the shape over and then you can call it using Mapframe and the Wikidata Q-number. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 16:07, 21 September 2024 (UTC)
::I meant to ask in the more specific case of using a GEOJSON. The reason is I'm mapping an OSM relation of type "site", which is not currently supported by Wikimedia importer. [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 05:33, 23 September 2024 (UTC)
:::Such as {{tlx|mapframe|<nowiki>frame=yes|from=Muro_da_Mauá.map</nowiki>}} ?
:::{{mapframe|frame=yes|frame-align=left|from=Muro_da_Mauá.map}}
:::{{clear}}
:::Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 08:15, 23 September 2024 (UTC)
::::Yes, but the external link to OSM could point to the relation https://www.openstreetmap.org/relation/17981605#map=14/-30.02738/-51.22937&layers=N instead of just the center coordinates https://www.openstreetmap.org/#map=14/-30.02738/-51.22937 [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 23:56, 23 September 2024 (UTC)
:::::The Wikidata page is the central go-to point for all related features of an article. It already has a link to the relation on OSM, which usually gets cross-linked after adding the Q number to the relation on OSM. The Commons data page should also be added there. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 09:47, 24 September 2024 (UTC)
::::::I've now linked the geoshape in Commons to [[:wikidata:Q9046732|Q9046732]]. But when I include the parameter "id=Q9046732", mapframe complains "The JSON content is not valid GeoJSON+simplestyle." But let's consider a simpler case: a Q-item whose OSM relation is well supported at Wikipedia, such as "maplink|frame=yes|type=line|id=Q1094308". Even in that case, there's no backlink to the relation at OSM, only to the center coordinates. [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 21:37, 24 September 2024 (UTC)
:::::::From External links, you can't get to the OSM relation. I think the relations are meant to be accessible but not easily, and doing so only from the Wikidata page or by performing a find for local features in OSM itself is a good compromise. But, you could request it as a new feature in Phabricator. Using the Q number will only work if <code>|type=</code> is one of the four supported, as the parameter is still 'site', the wall shape is therefore not available on Wiki's maps. The Commons map file is not fetched with the Q number, it's only linked. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 01:08, 25 September 2024 (UTC)
 
The same source produces a correct result on [[User:OceanLoop/sandbox/map]] but not [[Indian Creek (Elwha River tributary)]]: the frame is not positioned properly. Does anyone know why this happens? [[User:OceanLoop|OceanLoop]] ([[User talk:OceanLoop|talk]]) 00:55, 24 July 2025 (UTC)
== Feature label ==
 
:Fixed. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 19:10, 24 July 2025 (UTC)
The hovering label shown when clicking on the map is taken from the current page's title. It'd be nice to be able to set it manually, especially when invoking maplink multiple times in the same page. For example: {{maplink|frame=yes|type=line|id=Q1094308}}. Thanks! [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 21:46, 24 September 2024 (UTC)
 
== How avoid text that appears when hover mouse cursor over the map? ==
:Add <code>|title=</code>
:{{tlx|maplink|<nowiki>frame=yes|type=line|title=Budapest|id=Q1094308</nowiki>}}
:{{maplink|frame=yes|type=line|frame-align=left|title=Budapest|id=Q1094308}}
:{{clear}}
:Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 01:21, 25 September 2024 (UTC)
::Thank you! Not sure how I missed that information already in the documentation. [[User:Fgnievinski|fgnievinski]] ([[User talk:Fgnievinski|talk]]) 05:35, 25 September 2024 (UTC)
 
{{maplink|frame=yes|type=line|id=Q2879655|text=Site of Cook's death in Kealakekua Bay |zoom=14|type3=point|coord3={{coord|19.48124|N|155.93325|W}}|title3=Point|description3=Site of death |frame-coordinates={{coord|19.48134|N|155.93025|W}}}}
== Can't disable map in infobox ==
 
In Talk page at [[Talk:Death_of_James_Cook#Comments_from_Noleander]] I put a map. I've replicated the map here. When the mouse cursor is hovered over the map (desktop computer; Windows OS, Firefox browser) a popup window appears containing the text "The intuitive WP:UE/WP:COMMONNAME page title for this would probably be Death of James Cook. Just saying." which is the text (unreleated to the map) at the top of that Talk page.
I would like to disable the map in the infobox but 'mapframe=no' does not work. The article is [[Leys Institute]]. It might just be a Wikidata thing. [[User:Traumnovelle|Traumnovelle]] ([[User talk:Traumnovelle|talk]]) 19:09, 30 September 2024 (UTC)
:Please do not ask the same question in multiple places, per [[WP:TALKFORK]]. I already explained in detail how to do this, but I understand that technical syntax is not everyone's cup of tea. I have disabled the map for you, even though I disagree with hiding the useful map in that article. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 18:10, 1 October 2024 (UTC)
 
That text popup window does not appear here, in this Talk page, when hovering over the map.
== default caption (text=map) ==
 
Hello,Does Ianyone proposeknow towhy change the defaultthat text ofis theappearing? captionand toif be empty. In my opinion "map" doesn't really say anything meaningful. Itthere is also a hurdleway to forprevent otherthat languagespopup usingfrom theappearing? module.--[[User:McBayneNoleander|McBayneNoleander]] ([[User talk:McBayneNoleander|talk]]) 2318:5129, 2510 OctoberAugust 20242025 (UTC)
 
:Likely have the [[Wikipedia:Tools/Navigation popups]] gadget switched on in your preferences, as that line is the very first topic on the talk page. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 19:21, 10 August 2025 (UTC)
== replication lag monitoring ==
::You are correct ... that fixed it. Thanks. [[User:Noleander|Noleander]] ([[User talk:Noleander|talk]]) 19:36, 10 August 2025 (UTC)
 
:::{{tl|maplink}} could probably set the 'nopopups' class to avoid that navigation popups triggers. —[[User:TheDJ|Th<span style="color: green">e</span>DJ]] ([[User talk:TheDJ|talk]] • [[Special:Contributions/TheDJ|contribs]]) 08:10, 11 August 2025 (UTC)
Can someone remind me, where can we check if there's a general lag between data entry into OSM and data showing up in Wikimedia mapframes? FAQ A4 {{tq|It can take 1 or 2 days after tagging on OSM before the data is available here.}}
::::If there is a way to disable this popup issue, permanently, by a change to the maplink template, that would prevent this issue from arising in the future for other editors & readers ... so it seems like a good idea. [[User:Noleander|Noleander]] ([[User talk:Noleander|talk]]) 12:33, 11 August 2025 (UTC)
 
I edited https://www.openstreetmap.org/relation/18351028 last night and in recent times it's been very quick, but now I'm not seeing the update and I'm starting to wonder.
 
IOW are the osm2pgsql run logs saved somewhere where they can be downloaded to see? --[[User:Joy|Joy]] ([[User talk:Joy|talk]]) 11:07, 30 November 2024 (UTC)
 
:Checks for lag are here - nothing unusual now but for some spikes earlier: [[mw:Help:Extension:Kartographer/OSM#Synchronization between OSM and Wikimedia wikis]]
:Nothing reported on Phabricator either. The links above do state anything up to 2 weeks is acceptable. I think it is nearly done as the relation is available, so wait another day I'd say. [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 09:11, 1 December 2024 (UTC)
::Thanks for the links, there is no apparent lag, but it's still not rendering on [[Guanipa River]], maybe it's something else.
::This code behavior where one says {{para|mapframe|yes}} and yet it still shows no error messages is rather frustrating, can we fix that somehow? --[[User:Joy|Joy]] ([[User talk:Joy|talk]]) 16:46, 2 December 2024 (UTC)
:::Fixed. Coordinates were missing off WD. Regs, [[User:The Equalizer|The Equalizer]] ([[User talk:The Equalizer|talk]]) 21:34, 2 December 2024 (UTC)
::::Aha, [https://www.wikidata.org/w/index.php?title=Q3646674&diff=prev&oldid=2282842583], thanks.
::::That apparent requirement doesn't quite make sense, either, since the interesting thing mapframe plots there is the line relation, not that point. --[[User:Joy|Joy]] ([[User talk:Joy|talk]]) 07:49, 3 December 2024 (UTC)
:::And AFTER the lag, comes the caching. For some things this is 24 hours (shapes and OSM lookups), and other things (like raw tiles), this can be up to 30 days. —[[User:TheDJ|Th<span style="color: green">e</span>DJ]] ([[User talk:TheDJ|talk]] • [[Special:Contributions/TheDJ|contribs]]) 12:17, 3 December 2024 (UTC)