Hi
I have a geodatabase in which in D_WGS_1984 datum and UTM zone projection. Now I need to use OpenStreetMap or googlemaps imagery WMS layer as base layer and overlay the datasets in Arcgis javascript web application . that I can Project basemap service in WGS_1984_Web_Mercator_Auxiliary_Sphere and do Overlay , but after create services and load in arcgis javascript when i use geometry query database need transform result from utm zone geodatabase to WGS_1984_Web_Mercator_Auxiliary_Spher e to show on map and this transform slow show the result .
<SPAN class="keyword token">select</SPAN> st_x<SPAN class="punctuation token">(</SPAN>st_transform<SPAN class="punctuation token">(</SPAN>shape<SPAN class="punctuation token">,</SPAN><SPAN class="number token">3857</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">,</SPAN>st_y<SPAN class="punctuation token">(</SPAN>st_transform<SPAN class="punctuation token">(</SPAN>shape<SPAN class="punctuation token">,</SPAN><SPAN class="number token">3857</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN> <SPAN class="keyword token">from</SPAN> sde<SPAN class="punctuation token">.</SPAN>lyr_mof <SPAN class="keyword token">limit</SPAN> <SPAN class="number token">1</SPAN> <SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
please help to select the appropriate way or other way:
1 - change the coordinate system of geodatabase data from UTM ZONE to WGS_1984_Web_Mercator_Auxiliary_Sphere (wkid 3857) by batch projection toolbox
2 - publish OpenStreetMap or googlemaps imagery WMS layer as base layer to UTM zone projection
very Thanks