<span style="color: transparent; display: none; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;">
  <p dir="auto">ehrm…</p>
<p dir="auto">Given that:</p>
<ul dir="auto">
<li><code class="notranslate">mapParams.center/.zoom</code> get the location via different means (either via the URL's hash, <code class="notranslate">mlat/mlon</code> query parameters or the previously last visited location that's stored in a cookie)</li>
<li>iD will not auto-center to a the supplied osm features if a <code class="notranslate">#map=…</code> parameter is present</li>
</ul>
<p dir="auto">The expected behavior is that:</p>
<ul dir="auto">
<li>if iD is loaded via a link that only has a map object (e.g. <code class="notranslate">osm.org/edit?node=1</code>, or <code class="notranslate">osm.org/edit?note=1234</code>), the editor should auto-center to the respective object during startup</li>
<li>if iD is loaded via a link that has both a map object and a map hash (e.g. <code class="notranslate">osm.org/edit?node=1#map=0/0/0</code>), it should set the map to the given lat/lon/zoom values</li>
<li>if iD is loaded via a bare link (<code class="notranslate">osm.org/edit</code>), it should use the map view that is stored in the cookie</li>
</ul>
<p dir="auto">So… since <code class="notranslate">mapParams</code> should already have the information from the <code class="notranslate">hashArgs</code>, I guess it should be able to reduce the inner <code class="notranslate">if</code> to something like the following, is that what you mean by <em>Removing the <code class="notranslate">else</code></em>??</p>
<div class="highlight highlight-source-js" dir="auto"><pre class="notranslate">    <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">hashArgs</span><span class="pl-kos">.</span><span class="pl-c1">center</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
      <span class="pl-s1">setMapView</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span>
    <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">I just tried to keep the fix here to the bare minimum and didn't want to touch the rest of the logic…</p>
<p dir="auto">PS: if I see this correctly, <code class="notranslate">idData.lat/.lon</code> are only set when the editor is loaded using a <code class="notranslate">…?note=xxx</code> link, see <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/openstreetmap/openstreetmap-website/commit/6494747882358cc1506ae442c89eed3db1de94a4/hovercard" href="https://github.com/openstreetmap/openstreetmap-website/commit/6494747882358cc1506ae442c89eed3db1de94a4"><tt>6494747</tt></a>. This is AFAICT not necessary anymore because notes are by now also using the <code class="notranslate">mapParams.object</code> path. But let's handle that in another PR, shall we?</p><p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />Reply to this email directly, <a href="https://github.com/openstreetmap/openstreetmap-website/pull/5698#issuecomment-2663920675">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AAK2OLKKTJGI4OWRQJLELHL2QIYVBAVCNFSM6AAAAABXI34LQGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMNRTHEZDANRXGU">unsubscribe</a>.<br />You are receiving this because you are subscribed to this thread.<img src="https://github.com/notifications/beacon/AAK2OLNZV77UTEH6FKGDQ3D2QIYVBA5CNFSM6AAAAABXI34LQGWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTU6ZA2CG.gif" height="1" width="1" alt="" /><span style="color: transparent; font-size: 0; display: none; visibility: hidden; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0; mso-hide: all">Message ID: <span><openstreetmap/openstreetmap-website/pull/5698/c2663920675</span><span>@</span><span>github</span><span>.</span><span>com></span></span></p>
</span>


<div style="display: flex; flex-wrap: wrap; white-space: pre-wrap; align-items: center; "><img alt="tyrasd" height="20" width="20" style="border-radius:50%; margin-right: 4px;" decoding="async" src="https://avatars.githubusercontent.com/u/1927298?s=20&v=4" /><strong>tyrasd</strong> left a comment <a href="https://github.com/openstreetmap/openstreetmap-website/pull/5698#issuecomment-2663920675">(openstreetmap/openstreetmap-website#5698)</a></div>
<p dir="auto">ehrm…</p>
<p dir="auto">Given that:</p>
<ul dir="auto">
<li><code class="notranslate">mapParams.center/.zoom</code> get the location via different means (either via the URL's hash, <code class="notranslate">mlat/mlon</code> query parameters or the previously last visited location that's stored in a cookie)</li>
<li>iD will not auto-center to a the supplied osm features if a <code class="notranslate">#map=…</code> parameter is present</li>
</ul>
<p dir="auto">The expected behavior is that:</p>
<ul dir="auto">
<li>if iD is loaded via a link that only has a map object (e.g. <code class="notranslate">osm.org/edit?node=1</code>, or <code class="notranslate">osm.org/edit?note=1234</code>), the editor should auto-center to the respective object during startup</li>
<li>if iD is loaded via a link that has both a map object and a map hash (e.g. <code class="notranslate">osm.org/edit?node=1#map=0/0/0</code>), it should set the map to the given lat/lon/zoom values</li>
<li>if iD is loaded via a bare link (<code class="notranslate">osm.org/edit</code>), it should use the map view that is stored in the cookie</li>
</ul>
<p dir="auto">So… since <code class="notranslate">mapParams</code> should already have the information from the <code class="notranslate">hashArgs</code>, I guess it should be able to reduce the inner <code class="notranslate">if</code> to something like the following, is that what you mean by <em>Removing the <code class="notranslate">else</code></em>??</p>
<div class="highlight highlight-source-js" dir="auto"><pre class="notranslate">    <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">hashArgs</span><span class="pl-kos">.</span><span class="pl-c1">center</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
      <span class="pl-s1">setMapView</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span>
    <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">I just tried to keep the fix here to the bare minimum and didn't want to touch the rest of the logic…</p>
<p dir="auto">PS: if I see this correctly, <code class="notranslate">idData.lat/.lon</code> are only set when the editor is loaded using a <code class="notranslate">…?note=xxx</code> link, see <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/openstreetmap/openstreetmap-website/commit/6494747882358cc1506ae442c89eed3db1de94a4/hovercard" href="https://github.com/openstreetmap/openstreetmap-website/commit/6494747882358cc1506ae442c89eed3db1de94a4"><tt>6494747</tt></a>. This is AFAICT not necessary anymore because notes are by now also using the <code class="notranslate">mapParams.object</code> path. But let's handle that in another PR, shall we?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />Reply to this email directly, <a href="https://github.com/openstreetmap/openstreetmap-website/pull/5698#issuecomment-2663920675">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AAK2OLKKTJGI4OWRQJLELHL2QIYVBAVCNFSM6AAAAABXI34LQGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMNRTHEZDANRXGU">unsubscribe</a>.<br />You are receiving this because you are subscribed to this thread.<img src="https://github.com/notifications/beacon/AAK2OLNZV77UTEH6FKGDQ3D2QIYVBA5CNFSM6AAAAABXI34LQGWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTU6ZA2CG.gif" height="1" width="1" alt="" /><span style="color: transparent; font-size: 0; display: none; visibility: hidden; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0; mso-hide: all">Message ID: <span><openstreetmap/openstreetmap-website/pull/5698/c2663920675</span><span>@</span><span>github</span><span>.</span><span>com></span></span></p>

<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/openstreetmap/openstreetmap-website/pull/5698#issuecomment-2663920675",
"url": "https://github.com/openstreetmap/openstreetmap-website/pull/5698#issuecomment-2663920675",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>