Let's say I search for an address on Google and I get its latitude and longitude values as
<SPAN class="comment token">// Google Maps</SPAN>
<SPAN class="number token">57.44352239876</SPAN> <SPAN class="comment token">// lat</SPAN>
<SPAN class="operator token">-</SPAN><SPAN class="number token">133.8994923441</SPAN> <SPAN class="comment token">// long</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
If I search for the same address on ESRI maps, I get the values as
<SPAN class="comment token">// ESRI</SPAN>
<SPAN class="operator token">-</SPAN><SPAN class="number token">133.8994923441</SPAN> <SPAN class="comment token">// lat</SPAN>
<SPAN class="number token">57.44352239876</SPAN> <SPAN class="comment token">// long</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
If that is indeed the case, why is it so? Or is my assumption of those two being opposite is wrong?