//
Object is the base class of basically all of our QML types - Object QML Type | ArcGIS for Developers
Object has an errorChanged signal. I recommend you hook up to this signal on your various classes (the sync task objects, for example), and see if you can get anything useful out of it:
onErrorChanged<SPAN class="punctuation token">:</SPAN> <SPAN class="punctuation token">{</SPAN> <SPAN class="keyword token">if</SPAN> <SPAN class="punctuation token">(</SPAN>error<SPAN class="punctuation token">)</SPAN> console<SPAN class="punctuation token">.</SPAN><SPAN class="token function">log</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"Error:"</SPAN><SPAN class="punctuation token">,</SPAN> error<SPAN class="punctuation token">.</SPAN>message<SPAN class="punctuation token">,</SPAN> error<SPAN class="punctuation token">.</SPAN>additionalMessage<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN> <SPAN class="punctuation token">}</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
One wild guess would be that something relies (via property binding perhaps?) on the spatial reference of the map/basemap, and not having a basemap is messing that up somehow. Just a guess, but hopefully there is some sort of useful error message coming back to help us further narrow down the issue.
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.