protected override void InitMainRequest()
        {
            _mainOdrRequest              = ResourceODRLocation.PreloadAsync(new[] { _odrTag });
            _mainOdrRequest.OnCompleted += OnODRRequestCompleted;

            ResourceDebug.Log("{0}->InitMainRequest: odrTag [{1}]", GetType().Name, _odrTag);
        }
 public LocationODRLoadRequest(LocationHolder holder, string odrTag) : base(holder)
 {
     _odrTag     = odrTag;
     _odrRequest = ResourceODRLocation.PreloadAsync(new[] { odrTag });
 }